max) {
max = queryValues[i];
maxIdx = i;
}
}
- if(numQueries > 8 && num>=6)
- sumOther+=queryValues[maxIdx];
+ if(numQueries > 8 && num >= 6)
+ sumOther += queryValues[maxIdx];
else pointInfo += queryKeys[maxIdx].substr(4).replace('_',' ') + ': ' + queryValues[maxIdx] + ' ';
queryKeys.splice(maxIdx,1);
diff --git a/js/server_variables.js b/js/server_variables.js
index 1877ce7fb8..11be3dea5e 100644
--- a/js/server_variables.js
+++ b/js/server_variables.js
@@ -1,42 +1,92 @@
-$(function() {
- var textFilter=null;
- var odd_row=false;
-
- // Filter options are invisible for disabled js users
- $('fieldset#tableFilter').css('display','');
-
- $('#filterText').keyup(function(e) {
- if($(this).val().length==0) textFilter=null;
- else textFilter = new RegExp("(^| )"+$(this).val(),'i');
- filterVariables();
- });
-
- function filterVariables() {
- odd_row=false;
- var mark_next=false;
- var firstCell;
-
- $('table.filteredData tbody tr').each(function() {
- firstCell = $(this).children(':first');
-
- if(mark_next || textFilter==null || textFilter.exec(firstCell.text())) {
- // If current row is 'marked', also display next row
- if($(this).hasClass('marked') && !mark_next)
- mark_next=true;
- else mark_next=false;
-
- odd_row = !odd_row;
- $(this).css('display','');
- if(odd_row) {
- $(this).addClass('odd');
- $(this).removeClass('even');
- } else {
- $(this).addClass('even');
- $(this).removeClass('odd');
- }
- } else {
- $(this).css('display','none');
- }
- });
- }
+$(function() {
+ var textFilter=null;
+ var odd_row=false;
+ var testString = 'abcdefghijklmnopqrstuvwxyz0123456789,ABCEFGHIJKLMOPQRSTUVWXYZ';
+ var $tmpDiv;
+ var charWidth;
+
+ /*** This code snippet takes care that the table stays readable. It cuts off long strings when the window is resized ***/
+ $('table.data').after($tmpDiv=$(''+testString+' '));
+ charWidth = $tmpDiv.width() / testString.length;
+ $tmpDiv.remove();
+
+ $(window).resize(limitTableWidth);
+ limitTableWidth();
+
+ function limitTableWidth() {
+ var fulltext;
+ var charDiff;
+ var maxTableWidth;
+ var $tmpTable;
+
+ $('table.data').after($tmpTable=$(''));
+ maxTableWidth = $('#testTable').width();
+ $tmpTable.remove();
+ charDiff = ($('table.data').width()-maxTableWidth) / charWidth;
+
+ if($('body').innerWidth() < $('table.data').width()+10 || $('body').innerWidth() > $('table.data').width()+20) {
+ var maxChars=0;
+
+ $('table.data tbody tr td:nth-child(2)').each(function() {
+ maxChars=Math.max($(this).text().length,maxChars);
+ });
+
+ // Do not resize smaller if there's only 50 chars displayed already
+ if(charDiff > 0 && maxChars < 50) return;
+
+ $('table.data tbody tr td:nth-child(2)').each(function() {
+ if((charDiff>0 && $(this).text().length > maxChars-charDiff) || (charDiff<0 && $(this).find('abbr.cutoff').length>0)) {
+ if($(this).find('abbr.cutoff').length > 0)
+ fulltext = $(this).find('abbr.cutoff').attr('title');
+ else {
+ fulltext = $(this).text();
+ // Do not cut off elements with html in it and hope they are not too long
+ if(fulltext.length != $(this).html().length) return 0;
+ }
+
+ if(fulltext.length < maxChars-charDiff)
+ $(this).html(fulltext);
+ else $(this).html(''+fulltext.substr(0,maxChars-charDiff-3)+'... ');
+ }
+ });
+ }
+ }
+
+ // Filter options are invisible for disabled js users
+ $('fieldset#tableFilter').css('display','');
+
+ $('#filterText').keyup(function(e) {
+ if($(this).val().length==0) textFilter=null;
+ else textFilter = new RegExp("(^| )"+$(this).val(),'i');
+ filterVariables();
+ });
+
+ function filterVariables() {
+ odd_row=false;
+ var mark_next=false;
+ var firstCell;
+
+ $('table.filteredData tbody tr').each(function() {
+ firstCell = $(this).children(':first');
+
+ if(mark_next || textFilter==null || textFilter.exec(firstCell.text())) {
+ // If current row is 'marked', also display next row
+ if($(this).hasClass('marked') && !mark_next)
+ mark_next=true;
+ else mark_next=false;
+
+ odd_row = !odd_row;
+ $(this).css('display','');
+ if(odd_row) {
+ $(this).addClass('odd');
+ $(this).removeClass('even');
+ } else {
+ $(this).addClass('even');
+ $(this).removeClass('odd');
+ }
+ } else {
+ $(this).css('display','none');
+ }
+ });
+ }
});
\ No newline at end of file
diff --git a/js/sql.js b/js/sql.js
index a057e058d0..d83145a308 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -42,12 +42,13 @@ function getFieldName($this_field, disp_mode) {
else {
var this_field_index = $this_field.index();
// ltr or rtl direction does not impact how the DOM was generated
- //
+ // check if the action column in the left exist
+ var leftActionExist = !$('#table_results').find('th:first').hasClass('draggable');
// 5 columns to account for the checkbox, edit, appended inline edit, copy and delete anchors but index is zero-based so substract 4
- var field_name = $('#table_results').find('thead').find('th:nth('+ (this_field_index-4 )+') a').text();
+ var field_name = $('#table_results').find('thead').find('th:nth('+ (this_field_index - (leftActionExist ? 4 : 0)) + ') a').text();
// happens when just one row (headings contain no a)
if ("" == field_name) {
- field_name = $('#table_results').find('thead').find('th:nth('+ (this_field_index-4 )+')').text();
+ field_name = $('#table_results').find('thead').find('th:nth('+ (this_field_index - (leftActionExist ? 4 : 0)) + ')').text();
}
}
@@ -211,6 +212,24 @@ $(document).ready(function() {
$("#sqlqueryresults").live('appendAnchor',function() {
appendInlineAnchor();
})
+
+ /**
+ * Attach the {@link makegrid} function to a custom event, which will be
+ * triggered manually everytime the table of results is reloaded
+ * @memberOf jQuery
+ */
+ $("#sqlqueryresults").live('makegrid', function() {
+ $('#table_results').makegrid();
+ })
+
+ /**
+ * Attach the {@link refreshgrid} function to a custom event, which will be
+ * triggered manually everytime the table of results is manipulated (e.g., by inline edit)
+ * @memberOf jQuery
+ */
+ $("#sqlqueryresults").live('refreshgrid', function() {
+ $('#table_results').refreshgrid();
+ })
/**
* Trigger the appendAnchor event to prepare the first table for inline edit
@@ -324,6 +343,7 @@ $(document).ready(function() {
$('#sqlqueryresults').show();
$("#sqlqueryresults").html(data);
$("#sqlqueryresults").trigger('appendAnchor');
+ $("#sqlqueryresults").trigger('makegrid');
$('#togglequerybox').show();
if($("#togglequerybox").siblings(":visible").length > 0) {
$("#togglequerybox").trigger('click');
@@ -364,6 +384,7 @@ $(document).ready(function() {
$.post($the_form.attr('action'), $the_form.serialize(), function(data) {
$("#sqlqueryresults").html(data);
$("#sqlqueryresults").trigger('appendAnchor');
+ $("#sqlqueryresults").trigger('makegrid');
PMA_init_slider();
PMA_ajaxRemoveMessage($msgbox);
@@ -387,6 +408,7 @@ $(document).ready(function() {
$.post($the_form.attr('action'), $the_form.serialize() + '&ajax_request=true', function(data) {
$("#sqlqueryresults").html(data);
$("#sqlqueryresults").trigger('appendAnchor');
+ $("#sqlqueryresults").trigger('makegrid');
PMA_init_slider();
PMA_ajaxRemoveMessage($msgbox);
}) // end $.post()
@@ -412,7 +434,8 @@ $(document).ready(function() {
$.get($anchor.attr('href'), $anchor.serialize() + '&ajax_request=true', function(data) {
$("#sqlqueryresults")
.html(data)
- .trigger('appendAnchor');
+ .trigger('appendAnchor')
+ .trigger('makegrid');
PMA_ajaxRemoveMessage($msgbox);
}) // end $.get()
})//end Sort results table
@@ -431,7 +454,8 @@ $(document).ready(function() {
$.post($form.attr('action'), $form.serialize() + '&ajax_request=true' , function(data) {
$("#sqlqueryresults")
.html(data)
- .trigger('appendAnchor');
+ .trigger('appendAnchor')
+ .trigger('makegrid');
PMA_init_slider();
}) // end $.post()
})
@@ -517,21 +541,22 @@ $(document).ready(function() {
$this_hide.parent().removeClass("hover noclick");
$this_hide.siblings().removeClass("hover");
- var last_column = $this_hide.siblings().length;
+ var $input_siblings = $this_hide.parent('tr').find('.inline_edit');
var txt = '';
- for(var i = 4; i < last_column; i++) {
- if($this_hide.siblings("td:eq(" + i + ")").hasClass("inline_edit") == false) {
- continue;
+ $input_siblings.each(function() {
+ var $this_hide_siblings = $(this);
+ txt = $this_hide_siblings.data('original_data');
+ if($this_hide_siblings.children('span').children().length != 0) {
+ $this_hide_siblings.children('span').empty();
+ $this_hide_siblings.children('span').append(txt);
}
- txt = $this_hide.siblings("td:eq(" + i + ")").data('original_data');
- if($this_hide.siblings("td:eq(" + i + ")").children().length != 0) {
- $this_hide.siblings("td:eq(" + i + ")").empty();
- $this_hide.siblings("td:eq(" + i + ")").append(txt);
- }
- }
+ });
$(this).prev().prev().remove();
$(this).prev().remove();
$(this).remove();
+
+ // refresh the grid
+ $("#sqlqueryresults").trigger('refreshgrid');
});
} else {
var txt = '';
@@ -539,7 +564,8 @@ $(document).ready(function() {
$('#table_results tbody tr td span a#hide').click(function() {
var $hide_a = $(this);
- var pos = $hide_a.parents('td').index();
+ var $this_hide = $(this).parents('td');
+ var pos = $this_hide.index();
var $this_span = $hide_a.parent();
$this_span.find('a, br').remove();
@@ -547,22 +573,26 @@ $(document).ready(function() {
var $this_row = $this_span.parents('tr');
// changing inline_edit_active to inline_edit_anchor
- $this_row.siblings("tr:eq(3) td:eq(" + pos + ")").removeClass("inline_edit_active").addClass("inline_edit_anchor");
+ $this_hide.removeClass("inline_edit_active").addClass("inline_edit_anchor");
// removing marked and hover classes.
$this_row.parent('tbody').find('tr').find("td:eq(" + pos + ")").removeClass("marked hover");
- for( var i = 6; i <= rows + 2; i++){
+ for( var i = 0; i <= rows + 2; i++){
if( $this_row.siblings("tr:eq(" + i + ") td:eq(" + pos + ")").hasClass("inline_edit") == false) {
continue;
}
- txt = $this_row.siblings("tr:eq(" + i + ") td:eq(" + pos + ")").data('original_data');
- $this_row.siblings("tr:eq(" + i + ") td:eq(" + pos + ")").empty();
- $this_row.siblings("tr:eq(" + i + ") td:eq(" + pos + ")").append(txt);
+ $this_row_siblings = $this_row.siblings("tr:eq(" + i + ") td:eq(" + pos + ")");
+ txt = $this_row_siblings.data('original_data');
+ $this_row_siblings.children('span').empty();
+ $this_row_siblings.children('span').append(txt);
}
$(this).prev().remove();
$(this).prev().remove();
$(this).remove();
+
+ // refresh the grid
+ $("#sqlqueryresults").trigger('refreshgrid');
});
}
@@ -594,7 +624,7 @@ $(document).ready(function() {
/**
* @var data_value Current value of this field
*/
- var data_value = $(this).html();
+ var data_value = $(this).children('span').html();
// We need to retrieve the value from the server for truncated/relation fields
// Find the field name
@@ -603,6 +633,10 @@ $(document).ready(function() {
* @var this_field Object referring to this field ()
*/
var $this_field = $(this);
+ /**
+ * @var this_field_span Object referring to this field's child ()
+ */
+ var $this_field_span = $(this).children('span');
/**
* @var field_name String containing the name of this field.
* @see getFieldName()
@@ -620,11 +654,11 @@ $(document).ready(function() {
/**
* @var curr_value String current value of the field (for fields that are of type enum or set).
*/
- var curr_value = $this_field.text();
+ var curr_value = $this_field_span.text();
if($this_field.is(':not(.not_null)')){
// add a checkbox to mark null for all the field that are nullable.
- $this_field.html('Null :
');
+ $this_field_span.html('Null :
');
// check the 'checkbox_null__' if the corresponding value is null
if($this_field.is('.null')) {
$('.checkbox_null_' + field_name + '_' + this_row_index).attr('checked', true);
@@ -671,15 +705,17 @@ $(document).ready(function() {
})
} else {
- $this_field.html('
');
+ $this_field_span.html('
');
}
// In each input sibling, wrap the current value in a textarea
// and store the current value in a hidden span
if($this_field.is(':not(.truncated, .transformed, .relation, .enum, .set, .null)')) {
// handle non-truncated, non-transformed, non-relation values
+
+ value = data_value.replace(" ", "\n");
// We don't need to get any more data, just wrap the value
- $this_field.append('');
+ $this_field_span.append('');
$this_field.data('original_data', data_value);
}
else if($this_field.is('.truncated, .transformed')) {
@@ -700,8 +736,9 @@ $(document).ready(function() {
'inline_edit' : true
}, function(data) {
if(data.success == true) {
- $this_field.append('');
+ $this_field_span.append('');
$this_field.data('original_data', data_value);
+ $("#sqlqueryresults").trigger('refreshgrid');
}
else {
PMA_ajaxShowMessage(data.error);
@@ -727,8 +764,9 @@ $(document).ready(function() {
}
$.post('sql.php', post_params, function(data) {
- $this_field.append(data.dropdown);
+ $this_field_span.append(data.dropdown);
$this_field.data('original_data', data_value);
+ $("#sqlqueryresults").trigger('refreshgrid');
}) // end $.post()
}
else if($this_field.is('.enum')) {
@@ -748,8 +786,9 @@ $(document).ready(function() {
'curr_value' : curr_value
}
$.post('sql.php', post_params, function(data) {
- $this_field.append(data.dropdown);
+ $this_field_span.append(data.dropdown);
$this_field.data('original_data', data_value);
+ $("#sqlqueryresults").trigger('refreshgrid');
}) // end $.post()
}
else if($this_field.is('.set')) {
@@ -770,16 +809,21 @@ $(document).ready(function() {
}
$.post('sql.php', post_params, function(data) {
- $this_field.append(data.select);
+ $this_field_span.append(data.select);
$this_field.data('original_data', data_value);
+ $("#sqlqueryresults").trigger('refreshgrid');
}) // end $.post()
}
else if($this_field.is('.null')) {
//handle null fields
- $this_field.append('');
+ $this_field_span.append('');
$this_field.data('original_data', 'NULL');
}
- })
+ });
+
+ // refresh the grid
+ $("#sqlqueryresults").trigger('refreshgrid');
+
}) // End On click, replace the current field with an input/textarea
/**
@@ -801,7 +845,7 @@ $(document).ready(function() {
* being edited
*
*/
- var $this_td = $(this).parent().parent();
+ var $this_td = $(this).parents('td');
var $test_element = ''; // to test the presence of a element
// Initialize variables
@@ -1168,10 +1212,11 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
$input_siblings.each(function() {
// Inline edit post has been successful.
$this_sibling = $(this);
+ $this_sibling_span = $(this).children('span');
var is_null = $this_sibling.find('input:checkbox').is(':checked');
if (is_null) {
- $this_sibling.html('NULL');
+ $this_sibling_span.html('NULL');
$this_sibling.addClass('null');
} else {
$this_sibling.removeClass('null');
@@ -1231,9 +1276,12 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
}
}
}
- $this_sibling.html(new_html);
+ $this_sibling_span.html(new_html);
}
})
+
+ // refresh the grid
+ $("#sqlqueryresults").trigger('refreshgrid');
}
/**
@@ -1280,6 +1328,11 @@ $(document).ready(function() {
$('.column_heading.marker').live('click', function() {
PMA_changeClassForColumn($(this), 'marked');
});
+
+ /**
+ * create resizable table
+ */
+ $("#sqlqueryresults").trigger('makegrid');
});
/*
diff --git a/js/tbl_select.js b/js/tbl_select.js
index 8115245cbc..8d3049a5a6 100644
--- a/js/tbl_select.js
+++ b/js/tbl_select.js
@@ -67,6 +67,7 @@ $(document).ready(function() {
// found results
$("#sqlqueryresults").html(response);
$("#sqlqueryresults").trigger('appendAnchor');
+ $("#sqlqueryresults").trigger('makegrid');
$('#tbl_search_form')
// work around for bug #3168569 - Issue on toggling the "Hide search criteria" in chrome.
.slideToggle()
diff --git a/libraries/Index.class.php b/libraries/Index.class.php
index ee266aa137..7594f0c16a 100644
--- a/libraries/Index.class.php
+++ b/libraries/Index.class.php
@@ -504,7 +504,7 @@ class PMA_Index
$r .= ' ';
$r .= '' . htmlspecialchars($column->getCardinality()) . ' ';
$r .= '' . htmlspecialchars($column->getCollation()) . ' ';
- $r .= '' . htmlspecialchars($column->getNull()) . ' ';
+ $r .= '' . htmlspecialchars($column->getNull(true)) . ' ';
if ($column->getSeqInIndex() == 1) {
$r .= ''
@@ -635,7 +635,7 @@ class PMA_Index_Column
*
* @var integer
*/
- protected $_cardinality = 0;
+ protected $_cardinality = null;
public function __construct($params = array())
{
@@ -679,9 +679,11 @@ class PMA_Index_Column
return $this->_cardinality;
}
- public function getNull()
+ public function getNull($as_text = false)
{
- return $this->_null;
+ return $as_text
+ ? (!$this->_null || $this->_null == 'NO' ? __('No') : __('Yes'))
+ : $this->_null;
}
public function getSeqInIndex()
diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php
index ebe93f5fd7..b42a0aa832 100644
--- a/libraries/RecentTable.class.php
+++ b/libraries/RecentTable.class.php
@@ -14,7 +14,7 @@ require_once './libraries/Message.class.php';
*
* @package phpMyAdmin
*/
-class RecentTable
+class PMA_RecentTable
{
/**
* Defines the internal PMA table which contains recent tables.
@@ -33,9 +33,9 @@ class RecentTable
public $tables;
/**
- * RecentTable instance.
+ * PMA_RecentTable instance.
*
- * @var RecentTable
+ * @var PMA_RecentTable
*/
private static $_instance;
@@ -56,12 +56,12 @@ class RecentTable
/**
* Returns class instance.
*
- * @return RecentTable
+ * @return PMA_RecentTable
*/
public static function getInstance()
{
if (is_null(self::$_instance)) {
- self::$_instance = new RecentTable();
+ self::$_instance = new PMA_RecentTable();
}
return self::$_instance;
}
diff --git a/libraries/Table.class.php b/libraries/Table.class.php
index c73eb31e5a..cfc28d6ee5 100644
--- a/libraries/Table.class.php
+++ b/libraries/Table.class.php
@@ -12,9 +12,10 @@
class PMA_Table
{
/**
- * UI preferences property: sorted column
+ * UI preferences properties
*/
const PROP_SORTED_COLUMN = 'sorted_col';
+ const PROP_COLUMN_ORDER = 'col_order';
static $cache = array();
@@ -1195,6 +1196,27 @@ class PMA_Table
return $return;
}
+ /**
+ * Get all columns
+ *
+ * returns an array with all columns
+ *
+ * @param boolean whether to quote name with backticks ``
+ * @return array
+ */
+ public function getColumns($backquoted = true)
+ {
+ $sql = 'SHOW COLUMNS FROM ' . $this->getFullName(true);
+ $indexed = PMA_DBI_fetch_result($sql, 'Field', 'Field');
+
+ $return = array();
+ foreach ($indexed as $column) {
+ $return[] = $this->getFullName($backquoted) . '.' . ($backquoted ? PMA_backquote($column) : $column);
+ }
+
+ return $return;
+ }
+
/**
* Return UI preferences for this table from phpMyAdmin database.
*
@@ -1275,26 +1297,12 @@ class PMA_Table
$this->uiprefs =& $_SESSION['tmp_user_values']['table_uiprefs'][$this->db_name][$this->name];
}
- /**
- * Get UI preferences array for this table.
- * If pmadb and table_uiprefs is set, it will get the UI preferences from
- * phpMyAdmin database.
- *
- * @return array
- */
- public function getUiPrefs()
- {
- if (! isset($this->uiprefs)) {
- $this->loadUiPrefs();
- }
- return $this->uiprefs;
- }
-
/**
* Get a property from UI preferences.
* Return false if the property is not found.
* Available property:
* - PROP_SORTED_COLUMN
+ * - PROP_COLUMN_ORDER
*
* @uses loadUiPrefs()
*
@@ -1306,6 +1314,42 @@ class PMA_Table
if (! isset($this->uiprefs)) {
$this->loadUiPrefs();
}
+ // do checking based on property
+ if ($property == self::PROP_SORTED_COLUMN) {
+ if (isset($this->uiprefs[$property])) {
+ // check if the column name is exist in this table
+ $tmp = explode(' ', $this->uiprefs[$property]);
+ $colname = $tmp[0];
+ $avail_columns = $this->getColumns();
+ foreach ($avail_columns as $each_col) {
+ // check if $each_col ends with $colname
+ if (substr_compare($each_col, $colname,
+ strlen($each_col) - strlen($colname)) === 0) {
+ return $this->uiprefs[$property];
+ }
+ }
+ // remove the property, since it is not exist anymore in database
+ $this->removeUiProp(self::PROP_SORTED_COLUMN);
+ return false;
+ } else {
+ return false;
+ }
+ } else if ($property == self::PROP_COLUMN_ORDER) {
+ if (isset($this->uiprefs[$property])) {
+ // check if the table has not been modified
+ if (self::sGetStatusInfo($this->db_name, $this->name, 'CREATE_TIME') ==
+ $this->uiprefs['CREATE_TIME']) {
+ return $this->uiprefs[$property];
+ } else {
+ // remove the property, since the table has been modified
+ $this->removeUiProp(self::PROP_COLUMN_ORDER);
+ return false;
+ }
+ } else {
+ return false;
+ }
+ }
+ // default behaviour for other property:
return isset($this->uiprefs[$property]) ? $this->uiprefs[$property] : false;
}
@@ -1313,16 +1357,34 @@ class PMA_Table
* Set a property from UI preferences.
* If pmadb and table_uiprefs is set, it will save the UI preferences to
* phpMyAdmin database.
+ * Available property:
+ * - PROP_SORTED_COLUMN
+ * - PROP_COLUMN_ORDER
*
* @param string $property
* @param mixed $value
- * @return true|PMA_Message
+ * @param string $table_create_time Needed for PROP_COLUMN_ORDER
+ * @return boolean|PMA_Message
*/
- public function setUiProp($property, $value)
+ public function setUiProp($property, $value, $table_create_time = NULL)
{
if (! isset($this->uiprefs)) {
$this->loadUiPrefs();
}
+ // we want to save the create time if the property is PROP_COLUMN_ORDER
+ if ($property == self::PROP_COLUMN_ORDER) {
+ $curr_create_time = self::sGetStatusInfo($this->db_name, $this->name, 'CREATE_TIME');
+ if (isset($table_create_time) &&
+ $table_create_time == $curr_create_time) {
+ $this->uiprefs['CREATE_TIME'] = $curr_create_time;
+ } else {
+ // there is no $table_create_time, or
+ // supplied $table_create_time is older than current create time,
+ // so don't save
+ return false;
+ }
+ }
+ // save the value
$this->uiprefs[$property] = $value;
// check if pmadb is set
if (strlen($GLOBALS['cfg']['Server']['pmadb'])
@@ -1331,5 +1393,25 @@ class PMA_Table
}
return true;
}
+
+ /**
+ * Remove a property from UI preferences.
+ *
+ * @param string $property
+ */
+ public function removeUiProp($property)
+ {
+ if (! isset($this->uiprefs)) {
+ $this->loadUiPrefs();
+ }
+ if (isset($this->uiprefs[$property])) {
+ unset($this->uiprefs[$property]);
+ // check if pmadb is set
+ if (strlen($GLOBALS['cfg']['Server']['pmadb'])
+ && strlen($GLOBALS['cfg']['Server']['table_uiprefs'])) {
+ return $this->saveUiprefsToDb();
+ }
+ }
+ }
}
?>
diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php
index cb5454b75c..55cc32c1cd 100644
--- a/libraries/Theme_Manager.class.php
+++ b/libraries/Theme_Manager.class.php
@@ -288,7 +288,7 @@ class PMA_Theme_Manager
$theme_preview_href = '';
- $select_box .= $theme_preview_href . __('Theme / Style') . ' :' . "\n";
+ $select_box .= $theme_preview_href . __('Theme') . ':' . "\n";
$select_box .= '';
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 037656e6bb..d2c82497fa 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -1032,6 +1032,22 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
// Analyze it
if (isset($parsed_sql)) {
$analyzed_display_query = PMA_SQP_analyze($parsed_sql);
+
+ // Same as below (append LIMIT), append the remembered ORDER BY
+ if ($GLOBALS['cfg']['RememberSorting']
+ && isset($analyzed_display_query[0]['queryflags']['select_from'])
+ && isset($GLOBALS['sql_order_to_append'])) {
+ $query_base = $analyzed_display_query[0]['section_before_limit']
+ . "\n" . $GLOBALS['sql_order_to_append']
+ . $analyzed_display_query[0]['section_after_limit'];
+
+ // Need to reparse query
+ $parsed_sql = PMA_SQP_parse($query_base);
+ // update the $analyzed_display_query
+ $analyzed_display_query[0]['section_before_limit'] .= $GLOBALS['sql_order_to_append'];
+ $analyzed_display_query[0]['order_by_clause'] = $GLOBALS['sorted_col'];
+ }
+
// Here we append the LIMIT added for navigation, to
// enable its display. Adding it higher in the code
// to $sql_query would create a problem when
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index 5218681843..16d3a9f5eb 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -184,6 +184,25 @@ function PMA_setDisplayMode(&$the_disp_mode, &$the_total)
} // end of the 'PMA_setDisplayMode()' function
+/**
+ * Return true if we are executing a query in the form of
+ * "SELECT * FROM ..."
+ *
+ * @return boolean
+ */
+function PMA_isSelect()
+{
+ // global variables set from sql.php
+ global $is_count, $is_export, $is_func, $is_analyse;
+ global $analyzed_sql;
+
+ return ! ($is_count || $is_export || $is_func || $is_analyse)
+ && count($analyzed_sql[0]['select_expr']) == 0
+ && isset($analyzed_sql[0]['queryflags']['select_from'])
+ && count($analyzed_sql[0]['table_ref']) == 1;
+}
+
+
/**
* Displays a navigation button
*
@@ -374,6 +393,26 @@ function PMA_displayTableNavigation($pos_next, $pos_prev, $sql_query, $id_for_di
);
} // end move toward
?>
+
+
+ getUiProp(PMA_Table::PROP_COLUMN_ORDER);
+ if ($col_order) {
+ echo ' ';
+ }
+ // generate table create time
+ echo ' ';
+ }
+ // generate hints
+ echo ' ';
+ echo ' ';
+ echo ' ';
+ ?>
+
@@ -699,7 +738,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
// ... elseif display an empty column if the actions links are disabled to match the rest of the table
elseif ($GLOBALS['cfg']['RowActionLinks'] == 'none' && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal'
|| $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) {
- echo ' ';
+ echo ' ';
}
// 2. Displays the fields' name
@@ -739,7 +778,17 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
}
}
- for ($i = 0; $i < $fields_cnt; $i++) {
+ if (PMA_isSelect()) {
+ // prepare to get the column order, if available
+ $pmatable = new PMA_Table($GLOBALS['table'], $GLOBALS['db']);
+ $col_order = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_ORDER);
+ } else {
+ $col_order = false;
+ }
+
+ for ($j = 0; $j < $fields_cnt; $j++) {
+ // assign $i with appropriate column order
+ $i = $col_order ? $col_order[$j] : $j;
// See if this column should get highlight because it's used in the
// where-query.
if (isset($highlight_columns[$fields_meta[$i]->name]) || isset($highlight_columns[PMA_backquote($fields_meta[$i]->name)])) {
@@ -874,6 +923,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
|| $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') {
echo '' . $order_link . $comments . ' ';
}
$vertical_display['desc'][] = ' ' . "\n"
+ . 'class="draggable' . ($condition_field ? ' condition' : '') . '">' . "\n"
. $order_link . $comments . ' ' . "\n";
} // end if (2.1)
@@ -901,9 +951,12 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal'
|| $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') {
echo '';
}
$vertical_display['desc'][] = ' ' . "\n"
+ . 'class="draggable' . ($condition_field ? ' condition"' : '') . '">' . "\n"
. ' ' . htmlspecialchars($fields_meta[$i]->name) . "\n"
. $comments . ' ';
} // end else (2.2)
@@ -1154,6 +1207,8 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
if ($vertical_display['emptypre'] > 0) {
echo ' ' . "\n"
.' ' . "\n";
+ } else if ($GLOBALS['cfg']['RowActionLinks'] == 'none') {
+ echo ' ' . "\n";
}
foreach ($vertical_display['desc'] as $val) {
@@ -1289,7 +1344,19 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
} // end if (1)
// 2. Displays the rows' values
- for ($i = 0; $i < $fields_cnt; ++$i) {
+
+ if (PMA_isSelect()) {
+ // prepare to get the column order, if available
+ $pmatable = new PMA_Table($GLOBALS['table'], $GLOBALS['db']);
+ $col_order = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_ORDER);
+ } else {
+ $col_order = false;
+ }
+
+ for ($j = 0; $j < $fields_cnt; ++$j) {
+ // assign $i with appropriate column order
+ $i = $col_order ? $col_order[$j] : $j;
+
$meta = $fields_meta[$i];
$not_null_class = $meta->not_null ? 'not_null' : '';
$relation_class = isset($map[$meta->name]) ? 'relation' : '';
@@ -1656,8 +1723,18 @@ function PMA_displayVerticalTable()
echo '' . "\n";
} // end if
+ if (PMA_isSelect()) {
+ // prepare to get the column order, if available
+ $pmatable = new PMA_Table($GLOBALS['table'], $GLOBALS['db']);
+ $col_order = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_ORDER);
+ } else {
+ $col_order = false;
+ }
+
// Displays data
- foreach ($vertical_display['desc'] AS $key => $val) {
+ foreach ($vertical_display['desc'] AS $j => $val) {
+ // assign appropriate key with current column order
+ $key = $col_order ? $col_order[$j] : $j;
echo '' . "\n";
echo $val;
diff --git a/libraries/header.inc.php b/libraries/header.inc.php
index 4036f862ea..5c07472bd2 100644
--- a/libraries/header.inc.php
+++ b/libraries/header.inc.php
@@ -19,7 +19,7 @@ require_once './libraries/RecentTable.class.php';
* @param string $table The table name
*/
function PMA_addRecentTable($db, $table) {
- $tmp_result = RecentTable::getInstance()->add($db, $table);
+ $tmp_result = PMA_RecentTable::getInstance()->add($db, $table);
if ($tmp_result === true) {
echo ' ';
} else {
diff --git a/libraries/server_variables_doc.php b/libraries/server_variables_doc.php
index 3e8faa8391..ce81e89294 100644
--- a/libraries/server_variables_doc.php
+++ b/libraries/server_variables_doc.php
@@ -6,6 +6,7 @@
* string $anchor: anchor to the documentation page
* string $chapter: chapter of "HTML, one page per chapter" documentation
* string $type: type of system variable
+ * string $format: if set to 'byte' it will format the variable with PMA_formatByteDown()
*/
$VARIABLE_DOC_LINKS = array();
$VARIABLE_DOC_LINKS['auto_increment_increment'] = array('auto_increment_increment','replication-options-master','sysvar');
@@ -16,11 +17,11 @@ $VARIABLE_DOC_LINKS['back_log'] = array('back_log','server-system-variables','sy
$VARIABLE_DOC_LINKS['basedir'] = array('basedir','server-options','option_mysqld');
$VARIABLE_DOC_LINKS['big_tables'] = array('big-tables','server-options','option_mysqld');
$VARIABLE_DOC_LINKS['bind_address'] = array('bind-address','server-options','option_mysqld');
-$VARIABLE_DOC_LINKS['binlog_cache_size'] = array('binlog_cache_size','replication-options-binary-log','sysvar');
+$VARIABLE_DOC_LINKS['binlog_cache_size'] = array('binlog_cache_size','replication-options-binary-log','sysvar','byte');
$VARIABLE_DOC_LINKS['binlog_direct_non_transactional_updates'] = array('binlog_direct_non_transactional_updates','replication-options-binary-log','sysvar');
$VARIABLE_DOC_LINKS['binlog_format'] = array('binlog-format','server-options','sysvar');
-$VARIABLE_DOC_LINKS['binlog_stmt_cache_size'] = array('binlog_stmt_cache_size','replication-options-binary-log','sysvar');
-$VARIABLE_DOC_LINKS['bulk_insert_buffer_size'] = array('bulk_insert_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['binlog_stmt_cache_size'] = array('binlog_stmt_cache_size','replication-options-binary-log','sysvar','byte');
+$VARIABLE_DOC_LINKS['bulk_insert_buffer_size'] = array('bulk_insert_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['character_set_client'] = array('character_set_client','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['character_set_connection'] = array('character_set_connection','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['character_set_database'] = array('character_set_database','server-system-variables','sysvar');
@@ -84,11 +85,11 @@ $VARIABLE_DOC_LINKS['init_file'] = array('init-file','server-options','option_my
$VARIABLE_DOC_LINKS['init_slave'] = array('init_slave','replication-options-slave','sysvar');
$VARIABLE_DOC_LINKS['innodb_adaptive_flushing'] = array('innodb_adaptive_flushing','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_adaptive_hash_index'] = array('innodb_adaptive_hash_index','innodb-parameters','sysvar');
-$VARIABLE_DOC_LINKS['innodb_additional_mem_pool_size'] = array('innodb_additional_mem_pool_size','innodb-parameters','sysvar');
+$VARIABLE_DOC_LINKS['innodb_additional_mem_pool_size'] = array('innodb_additional_mem_pool_size','innodb-parameters','sysvar','byte');
$VARIABLE_DOC_LINKS['innodb_autoextend_increment'] = array('innodb_autoextend_increment','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_autoinc_lock_mode'] = array('innodb_autoinc_lock_mode','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_buffer_pool_instances'] = array('innodb_buffer_pool_instances','innodb-parameters','sysvar');
-$VARIABLE_DOC_LINKS['innodb_buffer_pool_size'] = array('innodb_buffer_pool_size','innodb-parameters','sysvar');
+$VARIABLE_DOC_LINKS['innodb_buffer_pool_size'] = array('innodb_buffer_pool_size','innodb-parameters','sysvar','byte');
$VARIABLE_DOC_LINKS['innodb_change_buffering'] = array('innodb_change_buffering','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_checksums'] = array('innodb_checksums','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_commit_concurrency'] = array('innodb_commit_concurrency','innodb-parameters','sysvar');
@@ -107,8 +108,8 @@ $VARIABLE_DOC_LINKS['innodb_force_recovery'] = array('innodb_force_recovery','in
$VARIABLE_DOC_LINKS['innodb_io_capacity'] = array('innodb_io_capacity','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_lock_wait_timeout'] = array('innodb_lock_wait_timeout','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_locks_unsafe_for_binlog'] = array('innodb_locks_unsafe_for_binlog','innodb-parameters','sysvar');
-$VARIABLE_DOC_LINKS['innodb_log_buffer_size'] = array('innodb_log_buffer_size','innodb-parameters','sysvar');
-$VARIABLE_DOC_LINKS['innodb_log_file_size'] = array('innodb_log_file_size','innodb-parameters','sysvar');
+$VARIABLE_DOC_LINKS['innodb_log_buffer_size'] = array('innodb_log_buffer_size','innodb-parameters','sysvar','byte');
+$VARIABLE_DOC_LINKS['innodb_log_file_size'] = array('innodb_log_file_size','innodb-parameters','sysvar','byte');
$VARIABLE_DOC_LINKS['innodb_log_files_in_group'] = array('innodb_log_files_in_group','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_log_group_home_dir'] = array('innodb_log_group_home_dir','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['innodb_max_dirty_pages_pct'] = array('innodb_max_dirty_pages_pct','innodb-parameters','sysvar');
@@ -138,15 +139,15 @@ $VARIABLE_DOC_LINKS['innodb_version'] = array('innodb_version','innodb-parameter
$VARIABLE_DOC_LINKS['innodb_write_io_threads'] = array('innodb_write_io_threads','innodb-parameters','sysvar');
$VARIABLE_DOC_LINKS['insert_id'] = array('insert_id','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['interactive_timeout'] = array('interactive_timeout','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['join_buffer_size'] = array('join_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['join_buffer_size'] = array('join_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['keep_files_on_create'] = array('keep_files_on_create','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['key_buffer_size'] = array('key_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['key_buffer_size'] = array('key_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['key_cache_age_threshold'] = array('key_cache_age_threshold','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['key_cache_block_size'] = array('key_cache_block_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['key_cache_block_size'] = array('key_cache_block_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['key_cache_division_limit'] = array('key_cache_division_limit','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['language'] = array('language','server-options','option_mysqld');
$VARIABLE_DOC_LINKS['large_files_support'] = array('large_files_support','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['large_page_size'] = array('large_page_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['large_page_size'] = array('large_page_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['large_pages'] = array('large-pages','server-options','option_mysqld');
$VARIABLE_DOC_LINKS['last_insert_id'] = array('last_insert_id','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['lc_messages'] = array('lc-messages','server-options','option_mysqld');
@@ -172,19 +173,19 @@ $VARIABLE_DOC_LINKS['lower_case_file_system'] = array('lower_case_file_system','
$VARIABLE_DOC_LINKS['lower_case_table_names'] = array('lower_case_table_names','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['master-bind'] = array('','replication-options',0);
$VARIABLE_DOC_LINKS['max_allowed_packet'] = array('max_allowed_packet','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['max_binlog_cache_size'] = array('max_binlog_cache_size','replication-options-binary-log','sysvar');
-$VARIABLE_DOC_LINKS['max_binlog_size'] = array('max_binlog_size','replication-options-binary-log','sysvar');
-$VARIABLE_DOC_LINKS['max_binlog_stmt_cache_size'] = array('max_binlog_stmt_cache_size','replication-options-binary-log','sysvar');
+$VARIABLE_DOC_LINKS['max_binlog_cache_size'] = array('max_binlog_cache_size','replication-options-binary-log','sysvar','byte');
+$VARIABLE_DOC_LINKS['max_binlog_size'] = array('max_binlog_size','replication-options-binary-log','sysvar','byte');
+$VARIABLE_DOC_LINKS['max_binlog_stmt_cache_size'] = array('max_binlog_stmt_cache_size','replication-options-binary-log','sysvar','byte');
$VARIABLE_DOC_LINKS['max_connect_errors'] = array('max_connect_errors','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_connections'] = array('max_connections','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_delayed_threads'] = array('max_delayed_threads','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_error_count'] = array('max_error_count','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['max_heap_table_size'] = array('max_heap_table_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['max_heap_table_size'] = array('max_heap_table_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['max_insert_delayed_threads'] = array('max_insert_delayed_threads','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_join_size'] = array('max_join_size','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_length_for_sort_data'] = array('max_length_for_sort_data','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_prepared_stmt_count'] = array('max_prepared_stmt_count','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['max_relay_log_size'] = array('max_relay_log_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['max_relay_log_size'] = array('max_relay_log_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['max_seeks_for_key'] = array('max_seeks_for_key','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_sort_length'] = array('max_sort_length','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['max_sp_recursion_depth'] = array('max_sp_recursion_depth','server-system-variables','sysvar');
@@ -193,12 +194,12 @@ $VARIABLE_DOC_LINKS['max_user_connections'] = array('max_user_connections','serv
$VARIABLE_DOC_LINKS['max_write_lock_count'] = array('max_write_lock_count','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['memlock'] = array('memlock','server-options','option_mysqld');
$VARIABLE_DOC_LINKS['min_examined_row_limit'] = array('min-examined-row-limit','server-options','option_mysqld');
-$VARIABLE_DOC_LINKS['myisam_data_pointer_size'] = array('myisam_data_pointer_size','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['myisam_max_sort_file_size'] = array('myisam_max_sort_file_size','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['myisam_mmap_size'] = array('myisam_mmap_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['myisam_data_pointer_size'] = array('myisam_data_pointer_size','server-system-variables','sysvar','byte');
+$VARIABLE_DOC_LINKS['myisam_max_sort_file_size'] = array('myisam_max_sort_file_size','server-system-variables','sysvar','byte');
+$VARIABLE_DOC_LINKS['myisam_mmap_size'] = array('myisam_mmap_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['myisam_recover_options'] = array('myisam_recover_options','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['myisam_repair_threads'] = array('myisam_repair_threads','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['myisam_sort_buffer_size'] = array('myisam_sort_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['myisam_sort_buffer_size'] = array('myisam_sort_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['myisam_stats_method'] = array('myisam_stats_method','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['myisam_use_mmap'] = array('myisam_use_mmap','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['named_pipe'] = array('named_pipe','server-system-variables','sysvar');
@@ -234,25 +235,25 @@ $VARIABLE_DOC_LINKS['performance_schema_max_thread_instances'] = array('performa
$VARIABLE_DOC_LINKS['pid_file'] = array('pid-file','server-options','option_mysqld');
$VARIABLE_DOC_LINKS['plugin_dir'] = array('plugin_dir','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['port'] = array('port','server-options','option_mysqld');
-$VARIABLE_DOC_LINKS['preload_buffer_size'] = array('preload_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['preload_buffer_size'] = array('preload_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['profiling'] = array('profiling','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['profiling_history_size'] = array('profiling_history_size','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['protocol_version'] = array('protocol_version','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['proxy_user'] = array('proxy_user','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['pseudo_thread_id'] = array('pseudo_thread_id','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['query_alloc_block_size'] = array('query_alloc_block_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['query_alloc_block_size'] = array('query_alloc_block_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['query_cache_limit'] = array('query_cache_limit','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['query_cache_min_res_unit'] = array('query_cache_min_res_unit','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['query_cache_size'] = array('query_cache_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['query_cache_size'] = array('query_cache_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['query_cache_type'] = array('query_cache_type','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['query_cache_wlock_invalidate'] = array('query_cache_wlock_invalidate','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['query_prealloc_size'] = array('query_prealloc_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['query_prealloc_size'] = array('query_prealloc_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['rand_seed1'] = array('rand_seed1','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['rand_seed2'] = array('rand_seed2','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['range_alloc_block_size'] = array('range_alloc_block_size','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['read_buffer_size'] = array('read_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['range_alloc_block_size'] = array('range_alloc_block_size','server-system-variables','sysvar','byte');
+$VARIABLE_DOC_LINKS['read_buffer_size'] = array('read_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['read_only'] = array('read_only','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['read_rnd_buffer_size'] = array('read_rnd_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['read_rnd_buffer_size'] = array('read_rnd_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['relay-log-index'] = array('relay-log-index','replication-options-slave','option_mysqld');
$VARIABLE_DOC_LINKS['relay_log_index'] = array('relay_log_index','replication-options-slave','sysvar');
$VARIABLE_DOC_LINKS['relay_log_info_file'] = array('relay_log_info_file','replication-options-slave','sysvar');
@@ -291,7 +292,7 @@ $VARIABLE_DOC_LINKS['slow_launch_time'] = array('slow_launch_time','server-syste
$VARIABLE_DOC_LINKS['slow_query_log'] = array('slow-query-log','server-options','server-system-variables');
$VARIABLE_DOC_LINKS['slow_query_log_file'] = array('slow_query_log_file','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['socket'] = array('socket','server-options','option_mysqld');
-$VARIABLE_DOC_LINKS['sort_buffer_size'] = array('sort_buffer_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['sort_buffer_size'] = array('sort_buffer_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['sql_auto_is_null'] = array('sql_auto_is_null','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['sql_big_selects'] = array('sql_big_selects','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['sql_big_tables'] = array('big-tables','server-options','server-system-variables');
@@ -332,10 +333,10 @@ $VARIABLE_DOC_LINKS['time_format'] = array('time_format','server-system-variable
$VARIABLE_DOC_LINKS['time_zone'] = array('time_zone','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['timed_mutexes'] = array('timed_mutexes','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['timestamp'] = array('timestamp','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['tmp_table_size'] = array('tmp_table_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['tmp_table_size'] = array('tmp_table_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['tmpdir'] = array('tmpdir','server-options','option_mysqld');
-$VARIABLE_DOC_LINKS['transaction_alloc_block_size'] = array('transaction_alloc_block_size','server-system-variables','sysvar');
-$VARIABLE_DOC_LINKS['transaction_prealloc_size'] = array('transaction_prealloc_size','server-system-variables','sysvar');
+$VARIABLE_DOC_LINKS['transaction_alloc_block_size'] = array('transaction_alloc_block_size','server-system-variables','sysvar','byte');
+$VARIABLE_DOC_LINKS['transaction_prealloc_size'] = array('transaction_prealloc_size','server-system-variables','sysvar','byte');
$VARIABLE_DOC_LINKS['tx_isolation'] = array('tx_isolation','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['unique_checks'] = array('unique_checks','server-system-variables','sysvar');
$VARIABLE_DOC_LINKS['updatable_views_with_limit'] = array('updatable_views_with_limit','server-system-variables','sysvar');
diff --git a/navigation.php b/navigation.php
index 76f5b98055..af3f138bd3 100644
--- a/navigation.php
+++ b/navigation.php
@@ -59,7 +59,7 @@ require_once './libraries/RecentTable.class.php';
* Check if it is an ajax request to reload the recent tables list.
*/
if ($GLOBALS['is_ajax_request'] && $_REQUEST['recent_table']) {
- PMA_ajaxResponse('', true, array('options' => RecentTable::getInstance()->getHtmlSelectOption()) );
+ PMA_ajaxResponse('', true, array('options' => PMA_RecentTable::getInstance()->getHtmlSelectOption()) );
}
// keep the offset of the db list in session before closing it
@@ -195,7 +195,7 @@ require './libraries/navigation_header.inc.php';
// display recently used tables
if ($GLOBALS['cfg']['LeftRecentTable'] > 0) {
echo '';
- echo RecentTable::getInstance()->getHtmlSelect();
+ echo PMA_RecentTable::getInstance()->getHtmlSelect();
echo '
';
}
diff --git a/po/af.po b/po/af.po
index a1db4f5811..9c1130820b 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Wys alles"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -35,23 +35,23 @@ msgid ""
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Soek"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -68,7 +68,7 @@ msgstr "Soek"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -81,7 +81,7 @@ msgstr "Sleutelnaam"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
#, fuzzy
msgid "Description"
msgstr "geen Beskrywing"
@@ -134,7 +134,7 @@ msgstr "Tabel kommentaar"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -149,7 +149,7 @@ msgstr "Kolom name"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipe"
@@ -165,7 +165,7 @@ msgstr "Tipe"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "Skakels na"
msgid "Comments"
msgstr "Kommentaar"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "Kommentaar"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nee"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "Nee"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "Sien die storting (skema) van die databasis"
msgid "No tables found in database."
msgstr "Geen tabelle in databasis gevind nie."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Kies Alles"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Selekteer Niks"
@@ -272,7 +272,7 @@ msgstr "Tabel %s is gekopieer na %s."
msgid "Rename database to"
msgstr "Hernoem tabel na"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
#, fuzzy
msgid "Command"
msgstr "Kommentaar"
@@ -337,7 +337,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -367,7 +367,7 @@ msgstr "Vertoon PDF skema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabel"
@@ -383,7 +383,7 @@ msgstr "Rye"
msgid "Size"
msgstr "Grootte"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in gebruik"
@@ -410,7 +410,7 @@ msgstr ""
msgid "Last check"
msgstr ""
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -431,25 +431,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sorteer"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Dalend"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Dalend"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Wys"
@@ -472,7 +472,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Of"
@@ -505,39 +505,39 @@ msgstr "Gebruik Tabelle"
msgid "SQL query on database %s :"
msgstr "SQL-navraag op databasis %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Doen Navraag"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Toegang Geweier"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "ten minste een van die woorde"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "alle woorde"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "die presiese frase"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "as 'n regular expression"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Soek resultate vir \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -545,20 +545,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s resultate binne tabel %s "
msgstr[1] "%s resultate binne tabel %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Beloer Data"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Stort data vir tabel"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -569,7 +569,7 @@ msgstr "Stort data vir tabel"
msgid "Delete"
msgstr "Verwyder"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -577,172 +577,172 @@ msgid_plural "Total: %s matches"
msgstr[0] "Totaal: %s ooreenkomste"
msgstr[1] "Totaal: %s ooreenkomste"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Soek in databasis"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Vind:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Binne tabel(le):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Binne tabel(le):"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Geen tabelle in databasis gevind nie."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s is leeg gemaak"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Veld %s is verwyder"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s is verwyder"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Som"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Met gekose:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Kies Alles"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Kies Niks"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Drukker mooi (print view)"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Maak Leeg"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Verwyder"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Kontroleer tabel"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimaliseer tabel"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Herstel tabel"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analiseer tabel"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Vervang tabel data met leer (file)"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Vervang tabel data met leer (file)"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -757,9 +757,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Databasis"
@@ -776,8 +776,8 @@ msgstr "Skep"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr ""
@@ -915,7 +915,7 @@ msgstr "Die boekmerk is verwyder."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -938,7 +938,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -964,15 +964,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Wil jy regtig "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1064,175 +1064,215 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
+#: setup/frames/index.inc.php:137
+msgid "Edit"
+msgstr "Verander"
+
+#: js/messages.php:66 server_status.php:416
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Bediener Keuse"
-#: js/messages.php:65 server_status.php:396
+#: js/messages.php:67 server_status.php:419
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:66 server_status.php:423
+#: js/messages.php:68 server_status.php:438
#, fuzzy
msgid "Live query chart"
msgstr "SQL-stelling"
-#: js/messages.php:68
+#: js/messages.php:70
msgid "Static data"
msgstr ""
#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
#: tbl_structure.php:790
#, fuzzy
msgid "Total"
msgstr "totaal"
#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
+#: js/messages.php:74 server_status.php:595
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
+#: js/messages.php:76 libraries/common.lib.php:1375
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
+#: js/messages.php:78 libraries/common.lib.php:1377
msgid "."
msgstr "."
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Bediener Keuse"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr ""
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL-stelling"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Ry Statistiek"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:83
+#: js/messages.php:96
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:84
+#: js/messages.php:97
msgid "Processing Request"
msgstr ""
-#: js/messages.php:85 libraries/import/ods.php:80
+#: js/messages.php:98 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:86
+#: js/messages.php:99
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:100
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:101 libraries/relation.lib.php:87 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:91
+#: js/messages.php:104
#, fuzzy
msgid "Renaming Databases"
msgstr "Hernoem tabel na"
-#: js/messages.php:92
+#: js/messages.php:105
#, fuzzy
msgid "Reload Database"
msgstr "Hernoem tabel na"
-#: js/messages.php:93
+#: js/messages.php:106
#, fuzzy
msgid "Copying Database"
msgstr "Geen databasisse"
-#: js/messages.php:94
+#: js/messages.php:107
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:95
+#: js/messages.php:108
#, 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:96
+#: js/messages.php:109
#, fuzzy
msgid "Create Table"
msgstr "Skep 'n nuwe bladsy"
-#: js/messages.php:101
+#: js/messages.php:114
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Gebruik Tabelle"
-#: js/messages.php:104
+#: js/messages.php:117
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Soek"
-#: js/messages.php:105
+#: js/messages.php:118
#, fuzzy
msgid "Hide search results"
msgstr "SQL-stelling"
-#: js/messages.php:106
+#: js/messages.php:119
#, fuzzy
msgid "Show search results"
msgstr "SQL-stelling"
-#: js/messages.php:107
+#: js/messages.php:120
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Beloer Data"
-#: js/messages.php:108
+#: js/messages.php:121
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "Verwyder"
-#: js/messages.php:111
+#: js/messages.php:124
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:114
+#: js/messages.php:127
#, fuzzy
msgid "Hide query box"
msgstr "SQL-stelling"
-#: js/messages.php:115
+#: js/messages.php:128
#, fuzzy
msgid "Show query box"
msgstr "SQL-stelling"
-#: js/messages.php:116
+#: js/messages.php:129
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
-#: setup/frames/index.inc.php:137
-msgid "Edit"
-msgstr "Verander"
-
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1240,78 +1280,78 @@ msgstr "Verander"
msgid "Save"
msgstr "Stoor"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-stelling"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-stelling"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoreer"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Verander wagwoord"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Voortgebring deur"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Verander wagwoord"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Ma"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1319,127 +1359,127 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Geen databasisse"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Geen"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
msgid "Today"
msgstr "totaal"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Biner"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mei"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1447,176 +1487,176 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Des"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "So"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fr"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wo"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in gebruik"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -1708,7 +1748,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "databasisse"
@@ -1773,25 +1813,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabel %s is vernoem na %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1823,9 +1863,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1834,7 +1873,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
@@ -1977,7 +2015,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
#, fuzzy
msgid "Tables"
msgstr "Tabel"
@@ -2064,7 +2102,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr ""
@@ -2112,7 +2149,7 @@ msgid "Documentation"
msgstr "Dokumentasie"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-stelling"
@@ -2120,119 +2157,119 @@ msgstr "SQL-stelling"
msgid "MySQL said: "
msgstr "MySQL het gepraat: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Verduidelik SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Ignoreer SQL Verduideliking"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Sonder PHP Kode"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Skep PHP Kode"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Ignoreer SQL Validasie"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Valideer SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Vorige"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Einde"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2244,41 +2281,41 @@ msgstr ""
msgid "Structure"
msgstr "Struktuur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Voeg by"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operasies"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2632,7 +2669,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4577,7 +4614,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Regte"
@@ -4589,7 +4626,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4786,9 +4823,9 @@ msgstr "Karakterstel van die leer:"
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Geen"
@@ -4919,39 +4956,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Voeg By/Verwyder Veld Kolomme"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "ry(e) beginnende vanaf rekord #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horisontale"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikale"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "in %s formaat en herhaal opskrifte na %s selle"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4964,102 +5019,102 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Operasies"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Gedeeltelike Tekste"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Volle Tekste"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relasie uitsig"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
msgid "Relational display column"
msgstr "Relasie uitsig"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Die ry is verwyder"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Vermoor"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in navraag"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Vertoon rye"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Verander"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "Kolom Kommentaar word vertoon"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Bediener weergawe"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Skakel nie gevind nie"
@@ -5105,7 +5160,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5565,7 +5620,7 @@ msgstr "Vertoon Funksies"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Gasheer (host)"
@@ -5771,7 +5826,7 @@ msgstr "SQL resultaat"
msgid "Generated by"
msgstr "Voortgebring deur"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -5929,7 +5984,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Geen verandering"
@@ -6254,14 +6309,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Waarde"
@@ -6496,21 +6551,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr "Biner"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6559,11 +6614,11 @@ msgstr ""
msgid "Columns"
msgstr "Kolom name"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Boekmerk hierdie SQL-stelling"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6795,7 +6850,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Voeg 'n nuwe gebruiker by"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr ""
@@ -6956,7 +7011,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Gebruiker"
@@ -7223,7 +7278,7 @@ msgstr "Skep"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "Operasies"
@@ -7407,18 +7462,18 @@ msgstr "Die \"%s\" databasis bestaan nie!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Velde"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7936,7 +7991,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8075,262 +8130,246 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+msgid "Refresh rate"
+msgstr "Voortgebring deur"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "in gebruik"
+msgstr[1] "in gebruik"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Records"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Rekords"
+msgstr[1] "Rekords"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr ""
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Uitgebreide toevoegings"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Wys tabelle"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr ""
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Bediener Keuse"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Ry Statistiek"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-msgid "Refresh rate"
-msgstr "Voortgebring deur"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Records"
-msgid "second"
-msgstr "Rekords"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Records"
-msgid "seconds"
-msgstr "Rekords"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "in gebruik"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Moenie die wagwoord verander nie"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Wys tabelle"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
msgid "Related links:"
msgstr "Operasies"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8338,78 +8377,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8417,7 +8456,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8425,42 +8464,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8468,33 +8507,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8503,227 +8542,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8731,99 +8770,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8831,18 +8870,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8850,7 +8889,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8971,7 +9010,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -9249,41 +9288,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Valideer SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiket"
@@ -9667,25 +9706,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Kies Velde (ten minste een):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Hoeveelheid rye per bladsy"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Vertoon volgorde:"
@@ -9977,6 +10016,11 @@ msgstr ""
msgid "Rename view to"
msgstr "Hernoem tabel na"
+#, fuzzy
+#~| msgid "Records"
+#~ msgid "seconds"
+#~ msgstr "Rekords"
+
#, fuzzy
#~| msgid "SQL result"
#~ msgid "Query results"
diff --git a/po/ar.po b/po/ar.po
index d37bae22a6..8a2a4b5161 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
"Last-Translator: \n"
"Language-Team: arabic \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "شاهد الكل"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"لم يمكن تحديث نافذة المتصفح المستهدفة. يبدو أنك أغلقت الرئيسية أو أن مستعرضك "
"يمنع التحديث عبر النوافذ بسبب إعدادات الأمان."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "ابحث"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "ابحث"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "اسم المفتاح"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "الوصف"
@@ -137,7 +137,7 @@ msgstr "تعليقات على الجدول"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -152,7 +152,7 @@ msgstr "اسم العمود"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "النوع"
@@ -168,7 +168,7 @@ msgstr "النوع"
msgid "Null"
msgstr "خالي"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -197,7 +197,7 @@ msgstr "مرتبط بـ"
msgid "Comments"
msgstr "تعليقات"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -208,12 +208,12 @@ msgstr "تعليقات"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "لا"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -228,7 +228,7 @@ msgstr "لا"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -247,11 +247,11 @@ msgstr "عرض بنية قاعدة البيانات"
msgid "No tables found in database."
msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "تحديد الكل"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "إلغاء تحديد الكل"
@@ -273,7 +273,7 @@ msgstr "تم نسخ قاعدة البيانات %s إلى %s"
msgid "Rename database to"
msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "أمر"
@@ -334,7 +334,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -364,7 +364,7 @@ msgstr "بناء الارتباطات"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "الجدول"
@@ -380,7 +380,7 @@ msgstr "صفوف"
msgid "Size"
msgstr "الحجم"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "قيد الإستعمال"
@@ -406,7 +406,7 @@ msgstr "التحديث الأخير"
msgid "Last check"
msgstr "التحقق الأخير"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -427,25 +427,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "تصنيف"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "تصاعديا"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "تنازليا"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "عرض"
@@ -468,7 +468,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "أو"
@@ -501,39 +501,39 @@ msgstr "استخدم الجدول"
msgid "SQL query on database %s :"
msgstr "في قاعدة البيانات SQL-إستعلام %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "إرسال الاستعلام"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "غير مسموح"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "على الأقل أحد الكلمات"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "كل الكلمات"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "الجملة بالضبط"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "كصيغة مطابقة"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "ابحث في النتائج عن \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -545,20 +545,20 @@ msgstr[3] "%s مطابقة في الجدول %s "
msgstr[4] "%s مطابقة في الجدول %s "
msgstr[5] "%s مطابقة في الجدول %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "استعراض"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "إرجاع أو استيراد بيانات الجدول"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -569,7 +569,7 @@ msgstr "إرجاع أو استيراد بيانات الجدول"
msgid "Delete"
msgstr "حذف"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -581,174 +581,174 @@ msgstr[3] "المجموع: %s مطابقة"
msgstr[4] "المجموع: %s مطابقة"
msgstr[5] "المجموع: %s مطابقة"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "ابحث في قاعدة البيانات"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "ابحث:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "الكلمات مفصولة بحرف مسافة (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "داخل الجدول)الجداول(:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "داخل الجدول)الجداول(:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s أفرغت محتوياتها"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s حذفت"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "المجموع"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ": على المحدد"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "اختر الكل"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "إلغاء تحديد الكل"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "تحقق من overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "تصدير"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "عرض نسخة للطباعة"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "إفراغ محتوى"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "حذف"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "التحقق من الجدول"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "ضغط الجدول"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "إصلاح الجدول"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "تحليل الجدول"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "اذهب إلى الجدول"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "استبدال بيانات الجدول بالملف"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "استبدال بيانات الجدول بالملف"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "قاموس البيانات"
@@ -763,9 +763,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "قاعدة البيانات"
@@ -781,8 +781,8 @@ msgstr "أنشئ"
msgid "Updated"
msgstr "محدث"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "وضع"
@@ -918,7 +918,7 @@ msgstr "لقد حذفت العلامة المرجعية."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "تم إنشاء العلامة المرجعية %s"
@@ -941,7 +941,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -967,15 +967,15 @@ msgstr "اضغط للاختيار"
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "معطل \"حذف قاعدة بيانات\"الأمر "
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "هل تريد حقا "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1073,186 +1073,228 @@ msgstr "احذف المستخدمين المحددين"
msgid "Close"
msgstr "أغلق"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "اختيار الخادم"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL query"
-msgid "Live query chart"
-msgstr "استعلام-SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "مجموع كلي"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "معالَجات"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "إنسخ قاعدة البيانات إلى"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "مجموعة المحارف"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "You have to choose at least one column to display"
-msgid "Table must have at least one column"
-msgstr "عليك اختيار عمود واحد على الأقل للعرض"
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "أنشئ الجدول"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "استخدم الجدول"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "ابحث"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "in query"
-msgid "Hide search results"
-msgstr "في الاستعلام"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "SQL query"
-msgid "Show search results"
-msgstr "استعلام-SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "استعراض"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "قيد حذف %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query box"
-msgstr "في الاستعلام"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "SQL query"
-msgid "Show query box"
-msgstr "استعلام-SQL"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تحرير"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "اختيار الخادم"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL query"
+msgid "Live query chart"
+msgstr "استعلام-SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "مجموع كلي"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "اختيار الخادم"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "معالَجات"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "اتصالات"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Databases statistics"
+msgid "Query statistics"
+msgstr "إحصائيات قواعد البيانات"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "معالَجات"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "إنسخ قاعدة البيانات إلى"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "مجموعة المحارف"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "You have to choose at least one column to display"
+msgid "Table must have at least one column"
+msgstr "عليك اختيار عمود واحد على الأقل للعرض"
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "أنشئ الجدول"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "استخدم الجدول"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "ابحث"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "in query"
+msgid "Hide search results"
+msgstr "في الاستعلام"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "SQL query"
+msgid "Show search results"
+msgstr "استعلام-SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "استعراض"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "قيد حذف %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "in query"
+msgid "Hide query box"
+msgstr "في الاستعلام"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "SQL query"
+msgid "Show query box"
+msgstr "استعلام-SQL"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1260,79 +1302,79 @@ msgstr "تحرير"
msgid "Save"
msgstr "حفظ"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "أخف"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "في الاستعلام"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "SQL query"
msgid "Show search criteria"
msgstr "استعلام-SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "تجاهل"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "اختر الحقل لإظهاره"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "تغيير كلمة السر"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "ولد"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "تغيير كلمة السر"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "الإثنين"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1340,127 +1382,127 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "لايوجد قواعد بيانات"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "تبرع"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "سابق"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "التالي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "مجموع كلي"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "يناير"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "فبراير"
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "أبريل"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "مايو"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "يونيو"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "يوليو"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "أغسطس"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "سبتمبر"
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "أكتوبر"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "نوفمبر"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "ديسمبر"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "يناير"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "فبراير"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "أبريل"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1468,174 +1510,174 @@ msgid "May"
msgstr "مايو"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "يونيو"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "يوليو"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "أغسطس"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "سبتمبر"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "أكتوبر"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "نوفمبر"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "ديسمبر"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "الأحد"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "الإثنين"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "الثلاثاء"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "الأربعاء"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "الخميس"
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "الجمعة"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "السبت"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "الأحد"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "الإثنين"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "الثلاثاء"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "الأربعاء"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "الخميس"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "الجمعة"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "السبت"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "الأحد"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "الإثنين"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "الثلاثاء"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "الأربعاء"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "الخميس"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "الجمعة"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "السبت"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "الأسبوع"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "الساعة"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "الدقيقة"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "الثانية"
@@ -1724,7 +1766,7 @@ msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحده
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "قاعدة بيانات"
@@ -1790,25 +1832,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "قاعدة البيانات غير صالحة"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "اسم الجدول غير صالح"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "تم إعادة تسمية الجدول %s إلى %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1840,9 +1882,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1851,7 +1892,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "أهلا بك في %s"
@@ -1997,7 +2037,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "جداول"
@@ -2082,7 +2122,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "خادم"
@@ -2130,7 +2169,7 @@ msgid "Documentation"
msgstr "مستندات وثائقية"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "استعلام-SQL"
@@ -2138,119 +2177,119 @@ msgstr "استعلام-SQL"
msgid "MySQL said: "
msgstr "MySQL قال: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "اشرح SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "تخطي شرح SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "بدون كود PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "أنشئ كود PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "حدث"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "تخطي التأكد من SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "التحقق من استعلام SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "بايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "كيلوبايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "ميجابايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "جيجابايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "تيرابايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "بيتابايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "إكسابايت"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y الساعة %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "بداية"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "سابق"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "نهاية"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "إذهب إلى قاعدة بيانات "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2262,42 +2301,42 @@ msgstr ""
msgid "Structure"
msgstr "بناء"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "إدخال"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "عمليات"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "دليل تحميل الملفات على خادم الشبكة"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه."
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2654,7 +2693,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4605,7 +4644,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "الإمتيازات"
@@ -4617,7 +4656,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4820,9 +4859,9 @@ msgstr "شيفرة أحرف الملف:"
msgid "Compression:"
msgstr "الضغط"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "لا شيء"
@@ -4959,39 +4998,59 @@ msgstr ""
msgid "Language"
msgstr "اللغة"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "إضافه/حذف عمود حقل"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "اضغط للاختيار"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "صفوف تبدأ من"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "أفقي"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ")عناوين ملتفة( أفقيا"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "عمودي"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr " %s و إعادة الرؤوس بعد %s حقل"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "رتب حسب المفتاح"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5004,102 +5063,102 @@ msgstr "رتب حسب المفتاح"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "خيارات"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "نصوص جزئية"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "نصوص كاملة"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "بناء الارتباطات"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "تحويل المتصفح"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "لقد تم حذف الصف"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "إبطال"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "في الاستعلام"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "مشاهدة السجلات "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "المجموع"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "استغرق الاستعلام %01.4f ثانية"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "تغيير"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "عرض الطباعة (مع النصوص الكاملة)."
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "إظهار بناء ملف PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "تكوين"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "لم يمكن إيجاد الوصلة"
@@ -5143,7 +5202,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "وضع InnoDB"
@@ -5612,7 +5671,7 @@ msgstr "أنواع MIME المتوفرة"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "المزود"
@@ -5817,7 +5876,7 @@ msgstr "ناتج استعلام SQL"
msgid "Generated by"
msgstr "أنشئ بواسطة"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL قام بإرجاع نتيجة إعداد فارغه (مثلا صف صفري)."
@@ -5976,7 +6035,7 @@ msgstr ""
msgid "Add prefix"
msgstr "إضافة حقل جديد"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "لا تغييرات"
@@ -6303,14 +6362,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "متغير"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "القيمة"
@@ -6549,20 +6608,20 @@ msgid "Synchronize"
msgstr "تزامن"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "سجل ثنائي"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "متغيرات"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "مجموعات المحارف"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "محركات"
@@ -6609,11 +6668,11 @@ msgstr ""
msgid "Columns"
msgstr "اسم العمود"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "اجعل علامة مرجعية SQL-استعلام"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
@@ -6846,7 +6905,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "أضف مستخدم جديد"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "وقت"
@@ -7052,7 +7111,7 @@ msgid "Protocol version"
msgstr "نسخة البروتوكول"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "المستخدم"
@@ -7319,7 +7378,7 @@ msgstr "تكوين"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7504,17 +7563,17 @@ msgstr "الجدول \"%s\" غير موجود!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "الملفات"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "احذف الاستعلامات المعروضة"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "اعرض الاستعلامات كاملة"
@@ -8036,7 +8095,7 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8173,263 +8232,254 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "تم إيقاف العمليّة %s بنجاح."
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا."
-
-#: server_status.php:230
-msgid "Handler"
-msgstr ""
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr ""
-
-#: server_status.php:232
-msgid "Threads"
-msgstr ""
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr ""
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr ""
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr ""
-
-#: server_status.php:237
-msgid "Joins"
-msgstr ""
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr ""
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr ""
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr ""
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr ""
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr ""
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "بيانات التشغيل"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "اختيار الخادم"
-
-#: server_status.php:368
-#, fuzzy
-#| msgid "Databases statistics"
-msgid "Query statistics"
-msgstr "إحصائيات قواعد البيانات"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "حدث"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "الثانية"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "الثانية"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "الدقيقة"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "الدقيقة"
+msgstr[1] "الدقيقة"
+msgstr[2] "الدقيقة"
+msgstr[3] "الدقيقة"
+msgstr[4] "الدقيقة"
+msgstr[5] "الدقيقة"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "الثانية"
+msgstr[1] "الثانية"
+msgstr[2] "الثانية"
+msgstr[3] "الثانية"
+msgstr[4] "الثانية"
+msgstr[5] "الثانية"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "تم إيقاف العمليّة %s بنجاح."
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا."
+
+#: server_status.php:263
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr ""
+
+#: server_status.php:265
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr ""
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:270
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr ""
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "بيانات التشغيل"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "اختيار الخادم"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "لاتغير كلمة السر"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show tables"
msgid "Show only alert values"
msgstr "شاهد الجدول"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "الروابط"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "لكل ساعة"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "لكل دقيقة"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "لكل ثانية"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "نوع الاستعلام"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "بيانات سير"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "استلم"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "أرسل"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "اتصالات"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "محاولات أخفقت"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "ألغي"
-#: server_status.php:778
-msgid "Processes"
-msgstr "معالَجات"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "رقم"
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8437,78 +8487,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8516,7 +8566,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8524,42 +8574,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8567,33 +8617,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8602,227 +8652,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8830,99 +8880,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8930,18 +8980,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8949,7 +8999,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9072,7 +9122,7 @@ msgstr "متغيرات وإعدادات الخادم"
msgid "Session value"
msgstr "قيمة الجلسة"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "قيمة عامة"
@@ -9346,41 +9396,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "استعرض القيم الغريبة"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "التحقق من استعلام SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "علامة"
@@ -9761,25 +9811,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "تجعل \"استعلام بواسطة المثال\" (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "اختيار حقول (على الأقل واحد):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "أضف شروط البحث (جسم من الفقره \"where\" clause):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "رقم السجلات لكل صفحة"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "ترتيب العرض:"
@@ -10073,16 +10123,15 @@ msgstr ""
msgid "Rename view to"
msgstr "أعد تسمية العرض الـ"
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "seconds"
+#~ msgstr "الثانية"
+
#~ msgid "Query results"
#~ msgstr "ناتج استعلام SQL"
#~ msgid "Show processes"
#~ msgstr "عرض العمليات"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "إلغاء"
@@ -10099,23 +10148,15 @@ msgstr "أعد تسمية العرض الـ"
#~ "the server."
#~ msgstr "إحصائيات الاستعلام : %s استعلام أرسل إلى الخادم منذ تشغيله."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "تم إعادة قراءة الصلاحيات بنجاح."
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "نوع الاستعلام"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "أضف مستخدم جديد"
-#, fuzzy
-#~| msgid "Create"
#~ msgid "Create User"
#~ msgstr "تكوين"
diff --git a/po/az.po b/po/az.po
index e92db6024d..203c48b068 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Hamısını göster"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -34,23 +34,23 @@ msgid ""
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Axtarış"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -67,7 +67,7 @@ msgstr "Axtarış"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -80,7 +80,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:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Haqqında"
@@ -100,7 +100,7 @@ msgstr ""
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Uzaqdaki linke qosula bilmedim "
#: changelog.php:32 license.php:28
#, php-format
@@ -108,11 +108,13 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"%s fayli systemde yoxdur,zehmet olmasa www.phpmyadmin.net saytini ziyaret "
+"edin"
#: db_create.php:58
-#, fuzzy, php-format
+#, php-format
msgid "Database %1$s has been created."
-msgstr "%s bazası leğv edildi."
+msgstr "%s bazası yaradildi"
#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
@@ -131,7 +133,7 @@ msgstr "Cedvel haqqında qısa izahat"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -146,7 +148,7 @@ msgstr "Sütun adları"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -162,7 +164,7 @@ msgstr "Tip"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -191,7 +193,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "Qısa İzahatlar"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -202,12 +204,12 @@ msgstr "Qısa İzahatlar"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Xeyir"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -222,7 +224,7 @@ msgstr "Xeyir"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -241,11 +243,11 @@ msgstr "Me'lumat bazasının sxemini göster"
msgid "No tables found in database."
msgstr "Me'lumat bazasında cedvel yoxdur."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Hamısını Seç"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Heç birini seçme"
@@ -269,7 +271,7 @@ msgstr "%s cedveli %s - e kopyalandı."
msgid "Rename database to"
msgstr "Cedveli yeniden adlandır"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Komanda Tipi"
@@ -334,7 +336,7 @@ msgstr "Kopyalanmış cedvele keç"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
#, fuzzy
@@ -365,7 +367,7 @@ msgstr "Relational schema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Cedvel"
@@ -381,7 +383,7 @@ msgstr "Sıra sayı"
msgid "Size"
msgstr "Boy"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "istifadede"
@@ -407,7 +409,7 @@ msgstr "En son yenilenme"
msgid "Last check"
msgstr "En son yoxlama"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -428,25 +430,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sırala"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Artan sırada"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Azalan sırada"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Göster"
@@ -469,7 +471,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "ya da"
@@ -502,39 +504,39 @@ msgstr "Use Tables"
msgid "SQL query on database %s :"
msgstr "SQL-query on database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Emri İcra Et"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Giriş Tesdiq Edilmedi"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "sözlerin en azından birini"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "bütün sözleri"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "tamamile eyni sözü"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "requlyar ifade (regular expression) olaraq"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"%s \" üçün axtarış neticeleri %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -542,20 +544,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)"
msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "İçindekiler"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Sxemi çıxarılan cedvel"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -566,7 +568,7 @@ msgstr "Sxemi çıxarılan cedvel"
msgid "Delete"
msgstr "Sil"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -574,173 +576,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "Cemi: %s uyğunluq"
msgstr[1] "Cemi: %s uyğunluq"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Search in database"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Tap:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Inside table(s):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Inside table(s):"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Me'lumat bazasında cedvel yoxdur."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "%s cedveli boşaldıldı"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "%s sahesi leğv edildi"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "%s cedveli leğv edildi"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "Relations"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Cemi"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Seçilenleri:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Hamısını Seç"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Heç Birini Seçme"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Çap görüntüsü"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Boşalt"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Leğv et"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Cedveli yoxla"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Cedveli optimallaşdır"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Cedveli te'mir et"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Cedveli analiz et"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Replace table data with file"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Replace table data with file"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Me'lumat lüğeti"
@@ -755,9 +757,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Me'lumat Bazası"
@@ -774,8 +776,8 @@ msgstr "Qur"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -915,7 +917,7 @@ msgstr "Bookmark silindi."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -938,7 +940,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -966,15 +968,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bazanı YOX ETMEK üzeresiniz!"
@@ -1076,180 +1078,222 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Quraşdırılmış Serverler"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL sorğusu"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Cemi"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Yerli"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Prosesler"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-msgid "Renaming Databases"
-msgstr "Cedveli yeniden adlandır"
-
-#: js/messages.php:92
-#, fuzzy
-msgid "Reload Database"
-msgstr "Cedveli yeniden adlandır"
-
-#: js/messages.php:93
-#, fuzzy
-msgid "Copying Database"
-msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Charset"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Yeni Sehife qur"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Use Tables"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Axtarış"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL sorğusu"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL sorğusu"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "İçindekiler"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "%s silinir"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL sorğusu"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL sorğusu"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Motorlar"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Deyişdir"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Quraşdırılmış Serverler"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL sorğusu"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Cemi"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Quraşdırılmış Serverler"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Prosesler"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Elaqeler"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL sorğusu"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Sıra Statistikası"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Yerli"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Prosesler"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+msgid "Renaming Databases"
+msgstr "Cedveli yeniden adlandır"
+
+#: js/messages.php:105
+#, fuzzy
+msgid "Reload Database"
+msgstr "Cedveli yeniden adlandır"
+
+#: js/messages.php:106
+#, fuzzy
+msgid "Copying Database"
+msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Charset"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Yeni Sehife qur"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Use Tables"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Axtarış"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL sorğusu"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL sorğusu"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "İçindekiler"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "%s silinir"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL sorğusu"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL sorğusu"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Motorlar"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1257,78 +1301,78 @@ msgstr "Deyişdir"
msgid "Save"
msgstr "Qeyd Et"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL sorğusu"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL sorğusu"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Diqqete Alma"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Qurucu"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Baz Ert"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1336,128 +1380,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, 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:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Heç biri"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Evvelki"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Sonrakı"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Cemi"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binary"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "May"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "İyun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "İyul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avq"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Yan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1465,176 +1509,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "İyun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "İyul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Avq"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sent"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Noy"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Baz"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Baz Ert"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Çerş Axş"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cüme"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Baz"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Baz Ert"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Çerş Axş"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Çerş"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Cüme Axş"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Cüme"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Şen"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Baz"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Baz Ert"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Çerş Axş"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çerş"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cüme Axş"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cüme"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şen"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "istifadede"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1726,7 +1770,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Me'lumat Bazaları"
@@ -1791,25 +1835,25 @@ msgstr "%s motoru bu serverde söndürülmüşdür."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Bu MySQL server %s depolama motorunu desteklememektedir."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1841,9 +1885,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1852,7 +1895,6 @@ msgstr "Elaqe qura bilmirem: yalnış quruluş."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s - e Xoş Gelmişsiniz!"
@@ -1996,7 +2038,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Cedveller"
@@ -2082,7 +2124,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2130,7 +2171,7 @@ msgid "Documentation"
msgstr "Dokumentasiya"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL sorğusu"
@@ -2138,121 +2179,121 @@ msgstr "SQL sorğusu"
msgid "MySQL said: "
msgstr "MySQL deyir: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL-i İzah Et"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL İzah Et-i Keç"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP Kodunu Gösterme"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP Kodunu Hazırla"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL İfadesini Yoxlama"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL Tesdiqle"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motorlar"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bayt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "QB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y saat %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s deqiqe ve %s saniye"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Başla"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Evvelki"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Son"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" me'lumat bazasına keç."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2264,42 +2305,42 @@ msgstr ""
msgid "Structure"
msgstr "Quruluş"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Elave et"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Emeliyyatlar"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web-server upload direktoriyası"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2656,7 +2697,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4628,7 +4669,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Selahiyyetler"
@@ -4640,7 +4681,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4843,9 +4884,9 @@ msgstr "Faylın Charset-i:"
msgid "Compression:"
msgstr "Sıxışdırma"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Heç biri"
@@ -4980,39 +5021,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Sahe Sütunlarını Elave Et/Sil"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "setri göster; başlangıç qeydiyyat nömresi"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "üfüqi"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "üfüqi (tekrarlanan başlıqlar)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "şaquli"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s rejimde, başlıqlar %s blokdan bir tekrar ederek"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5025,103 +5084,103 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Emeliyyatlar"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Qismi Metnler"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Tam Metnler (Full Text)"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Setir silindi"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Söndür"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Gösterilen setirler"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "cemi"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "sorğu %01.4f saniyede icra edildi"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Deyişdir"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF sxemini göster"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Server versiyası"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link tapılmadı"
@@ -5167,7 +5226,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -5636,7 +5695,7 @@ msgstr "Mövcud olan MIME-tipleri"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5846,7 +5905,7 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Qurucu"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6006,7 +6065,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Yeni sahe elave et"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Deyişiklik Yoxdur"
@@ -6338,14 +6397,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Deyişen"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Deyer"
@@ -6586,22 +6645,22 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr "Binary"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Deyişenler"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
#, fuzzy
msgid "Charsets"
msgstr "Charset"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motorlar"
@@ -6650,11 +6709,11 @@ msgstr ""
msgid "Columns"
msgstr "Sütun adları"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorğusunu bookmark-la"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6890,7 +6949,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Yeni İstifadeçi elave Et"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Müddet"
@@ -7100,7 +7159,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "İstifadeçi"
@@ -7370,7 +7429,7 @@ msgstr "Qur"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "Emeliyyatlar"
@@ -7559,18 +7618,18 @@ msgstr "\"%s\" cedveli mövcud deyil!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Sahe sayı"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Emrleri Tam Olaraq Göster"
@@ -8103,7 +8162,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8242,12 +8301,33 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+msgid "Refresh rate"
+msgstr "Qurucu"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "istifadede"
+msgstr[1] "istifadede"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "saniyede"
+msgstr[1] "saniyede"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s uğurla söndürüldü (killed)."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8255,253 +8335,216 @@ 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:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Sorğu tipi"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Genişletilmiş girişli"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Cedvelleri göster"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Runtime Me'lumatı"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Quraşdırılmış Serverler"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Sıra Statistikası"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-msgid "Refresh rate"
-msgstr "Qurucu"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "saniyede"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "saniyede"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "istifadede"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Parolu deyişdirme"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Cedvelleri göster"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "saatda"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "deqiqede"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "saniyede"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Sorğu tipi"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Neqliyyat"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Alındı"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Gönderildi"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Elaqeler"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Uğursuz Cehdler"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Dayandırılmış Elaqeler"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Prosesler"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "Nömre"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8509,78 +8552,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8588,7 +8631,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8596,42 +8639,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8639,33 +8682,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8674,227 +8717,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8902,99 +8945,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9002,18 +9045,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9021,7 +9064,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9144,7 +9187,7 @@ msgstr "Server Deyişenleri Ve Variantları"
msgid "Session value"
msgstr "Sessiya deyeri"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Qlobal deyer"
@@ -9422,41 +9465,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL Tesdiqle"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiket"
@@ -9841,25 +9884,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Sahe seçin (en az birini):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Sehife başına düşen setir sayı"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Sıralama şekli:"
@@ -10157,12 +10200,12 @@ msgstr ""
msgid "Rename view to"
msgstr "Cedveli yeniden adlandır"
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "seconds"
+#~ msgstr "saniyede"
+
#~ msgid "Query results"
#~ msgstr "SQL result"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Yenile"
@@ -10170,8 +10213,6 @@ msgstr "Cedveli yeniden adlandır"
#~ msgid "Show processes"
#~ msgstr "Prosesleri göster"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Yenile"
@@ -10190,30 +10231,21 @@ msgstr "Cedveli yeniden adlandır"
#~ "Sorğu Statistikası : Açıldıqdan bu yana, bu servere %s sorğu "
#~ "gönderilmişdir."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "The privileges were reloaded successfully."
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Sorğu tipi"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Yeni İstifadeçi elave Et"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Server versiyası"
#~ msgid "Add a new User"
#~ msgstr "Yeni İstifadeçi elave Et"
-#, fuzzy
-#~| msgid "Dumping data for table"
#~ msgid "Delete the matches for the "
#~ msgstr "Sxemi çıxarılan cedvel"
diff --git a/po/be.po b/po/be.po
index b7145d1842..2a11015527 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Паказаць усе"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне "
"міжваконных ўзаемадзеяньняў"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Пошук"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "Пошук"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Імя ключа"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Апісаньне"
@@ -136,7 +136,7 @@ msgstr "Камэнтар да табліцы"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -151,7 +151,7 @@ msgstr "Назвы калёнак"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Тып"
@@ -167,7 +167,7 @@ msgstr "Тып"
msgid "Null"
msgstr "Нуль"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Зьвязаная з"
msgid "Comments"
msgstr "Камэнтары"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "Камэнтары"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "Праглядзець дамп (схему) базы дадзеных"
msgid "No tables found in database."
msgstr "У базе дадзеных табліц ня выяўлена."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Выбраць усё"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Зьняць усе адзнакі"
@@ -272,7 +272,7 @@ msgstr "База дадзеных %s была скапіяваная ў %s"
msgid "Rename database to"
msgstr "Перайменаваць базу дадзеных у"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Каманда"
@@ -336,7 +336,7 @@ msgstr "Перайсьці да скапіяванай базы дадзеных
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -366,7 +366,7 @@ msgstr "Рэляцыйная схема"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Табліца"
@@ -382,7 +382,7 @@ msgstr "Радкі"
msgid "Size"
msgstr "Памер"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "выкарыстоўваецца"
@@ -408,7 +408,7 @@ msgstr "Апошняе абнаўленьне"
msgid "Last check"
msgstr "Апошняя праверка"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -429,25 +429,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Парадак"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "прамы"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "адваротны"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Паказаць"
@@ -470,7 +470,7 @@ msgstr "Выдаліць"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Або"
@@ -503,39 +503,39 @@ msgstr "Выкарыстоўваць табліцы"
msgid "SQL query on database %s :"
msgstr "SQL-запыт да БД %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Выканаць запыт"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "У доступе адмоўлена"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "прынамсі адно з словаў"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "усе словы"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "дакладную фразу"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "рэгулярны выраз"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Вынікі пошуку \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -543,20 +543,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s супадзеньняў у табліцы %s "
msgstr[1] "%s супадзеньняў у табліцы %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Прагляд"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Дамп дадзеных табліцы"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -567,7 +567,7 @@ msgstr "Дамп дадзеных табліцы"
msgid "Delete"
msgstr "Выдаліць"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -575,62 +575,62 @@ msgid_plural "Total: %s matches"
msgstr[0] "Агулам: %s супадзеньняў"
msgstr[1] "Агулам: %s супадзеньняў"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Пошук у базе дадзеных"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Знайсьці:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Словы, падзеленыя прагалам (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "У табліцы(ах):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Унутры поля:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "У базе дадзеных табліц ня выяўлена."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Табліца %s была ачышчаная"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Выгляд %s быў выдалены"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Табліца %s была выдаленая"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -639,113 +639,113 @@ msgstr ""
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
"%sдакумэнтацыі%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Выгляд"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Рэплікацыя"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Усяго"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
"%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-"
"сэрвэры."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "З адзначанымі:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Адзначыць усё"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Зьняць усе адзнакі"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Адзначыць тыя, што патрабуюць аптымізацыі"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспарт"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Вэрсія для друку"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Ачысьціць"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Выдаліць"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Праверыць табліцу"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Аптымізаваць табліцу"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Рамантаваць табліцу"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Аналізаваць табліцу"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "Базы дадзеных адсутнічаюць"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Замяніць дадзеныя табліцы дадзенымі з файла"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Замяніць дадзеныя табліцы дадзенымі з файла"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Слоўнік дадзеных"
@@ -761,9 +761,9 @@ msgstr "Праверыць табліцу"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "База дадзеных"
@@ -781,8 +781,8 @@ msgstr "Стварыць"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Стан"
@@ -933,7 +933,7 @@ msgstr "Закладка была выдаленая."
msgid "Showing bookmark"
msgstr "Паказваючы закладку"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка %s створаная"
@@ -961,7 +961,7 @@ msgstr ""
"вы не павялічыце ліміты выкананьня php-скрыптоў."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -987,15 +987,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Каманды \"DROP DATABASE\" адключаныя."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Ці сапраўды вы жадаеце "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!"
@@ -1099,184 +1099,226 @@ msgstr "Выдаліць выбраных карыстальнікаў"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Выбар сэрвэра"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL-запыт"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Агулам"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Лякальны"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Працэсы"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Перайменаваць базу дадзеных у"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Перайменаваць базу дадзеных у"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Капіяваць базу дадзеных у"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Кадыроўка"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "Табліца мусіць мець прынамсі адно поле."
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Стварыць табліцу"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Выкарыстоўваць табліцы"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Пошук"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL-запыт"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL-запыт"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Прагляд"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Выдаленьне %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL-запыт"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL-запыт"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Машыны"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Рэдагаваць"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Выбар сэрвэра"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL-запыт"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Агулам"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Выбар сэрвэра"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Працэсы"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Падлучэньні"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL-запыт"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Статыстыка радку"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Лякальны"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Працэсы"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Перайменаваць базу дадзеных у"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Перайменаваць базу дадзеных у"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Капіяваць базу дадзеных у"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Кадыроўка"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "Table must have at least one field."
+msgid "Table must have at least one column"
+msgstr "Табліца мусіць мець прынамсі адно поле."
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Стварыць табліцу"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Выкарыстоўваць табліцы"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Пошук"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL-запыт"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL-запыт"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Прагляд"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Выдаленьне %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL-запыт"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL-запыт"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Машыны"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1284,77 +1326,77 @@ msgstr "Рэдагаваць"
msgid "Save"
msgstr "Захаваць"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Схаваць"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-запыт"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-запыт"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ігнараваць"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Выберыце спасылкавы ключ"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Выберыце зьнешні ключ"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Выберыце поле для адлюстраваньня"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Згенэраваць пароль"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Згенэраваць"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Зьмяніць пароль"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пан"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1362,128 +1404,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Стварыць сувязь"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Базы дадзеных адсутнічаюць"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "Дадзеныя"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Папярэдняя старонка"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Наступная старонка"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Агулам"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Двайковы"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Сак"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Кра"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Тра"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Чэр"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Ліп"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Жні"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Кас"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Сту"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Сак"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Кра"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1491,178 +1533,178 @@ msgid "May"
msgstr "Тра"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Чэр"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Ліп"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Жні"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Кас"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Ліс"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Сьн"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ндз"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пан"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Аўт"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пят"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ндз"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Пан"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Аўт"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Цач"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Пят"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ндз"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пан"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Аўт"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сер"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Цач"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пят"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "выкарыстоўваецца"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1759,7 +1801,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Базы дадзеных"
@@ -1831,25 +1873,25 @@ msgstr "%s была адключаная для рэтага MySQL-сэрвэр
msgid "This MySQL server does not support the %s storage engine."
msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Няправільная база дадзеных"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Некарэктнае імя табліцы"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Памылка перайменаваньня табліцы %1$s у %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Табліца %s была перайменаваная ў %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1881,10 +1923,9 @@ msgstr "Тэма %s ня знойдзеная!"
msgid "Theme path not found for theme %s!"
msgstr "Ня знойдзены шлях да тэмы %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Тэма / Стыль"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1892,7 +1933,6 @@ msgstr "Немагчыма падлучыцца: няправільныя нал
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Запрашаем у %s"
@@ -2046,7 +2086,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Табліц"
@@ -2136,7 +2176,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сэрвэр"
@@ -2184,7 +2223,7 @@ msgid "Documentation"
msgstr "Дакумэнтацыя"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-запыт"
@@ -2192,122 +2231,122 @@ msgstr "SQL-запыт"
msgid "MySQL said: "
msgstr "Адказ MySQL: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Тлумачыць SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Не тлумачыць SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Без PHP-коду"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Стварыць PHP-код"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Абнавіць"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Не правяраць SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Праверыць SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Машыны"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Прафіляваньне"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Б"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "КiБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "МіБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "ГіБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "ТіБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "ПіБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "ЭіБ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Першая старонка"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Папярэдняя старонка"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Апошняя старонка"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Перайсьці да базы дадзеных "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2319,42 +2358,42 @@ msgstr ""
msgid "Structure"
msgstr "Структура"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Уставіць"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Апэрацыі"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2713,7 +2752,7 @@ msgstr "Перайменаваць базу дадзеных у"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4717,7 +4756,7 @@ msgstr "Дызайнэр"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Прывілеі"
@@ -4729,7 +4768,7 @@ msgstr "Працэдуры"
msgid "Return type"
msgstr "Тып працэдуры"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4946,9 +4985,9 @@ msgstr "Кадыроўка файла:"
msgid "Compression:"
msgstr "Сьціск"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Няма"
@@ -5098,39 +5137,57 @@ msgstr ""
msgid "Language"
msgstr "Мова"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Дадаць/выдаліць калёнку крытэру"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d не зьяўляецца карэктным нумарам радка."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "радкоў, пачынаючы з запісу #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "гарызантальна"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "гарызантальна (павернутыя загалоўкі)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "вэртыкальна"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "у рэжыме %s і паўтараць загалоўкі праз кожныя %s радкоў"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Сартаваць па ключы"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5143,101 +5200,101 @@ msgstr "Сартаваць па ключы"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Налады"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Частковыя тэксты"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Поўныя тэксты"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Ключ сувязі"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Адлюстраванае поле сувязі"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Пераўтварэньне MIME-тыпу браўзэрам"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Скапіяваць"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Радок быў выдалены"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Спыніць"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "па запыту"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Паказаныя запісы"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "усяго"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запыт выконваўся %01.4f сэк"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Зьмяніць"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Дзеяньні з вынікамі запытаў"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Вэрсія для друку (з усім тэкстам)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Паказаць PDF-схему"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Стварыць сувязь"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Сувязь ня знойдзеная"
@@ -5285,7 +5342,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Пул буфэру"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Стан InnoDB"
@@ -5811,7 +5868,7 @@ msgstr "Даступныя MIME-тыпы"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Хост"
@@ -6021,7 +6078,7 @@ msgstr "SQL-вынік"
msgid "Generated by"
msgstr "Створаны"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)."
@@ -6185,7 +6242,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Дадаць новае поле"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Няма зьменаў"
@@ -6516,14 +6573,14 @@ msgid "Slave status"
msgstr "Паказаць стан залежных сэрвэраў"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Зьменная"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Значэньне"
@@ -6765,20 +6822,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Двайковы лог"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Зьменныя"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Кадыроўкі"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Машыны"
@@ -6829,11 +6886,11 @@ msgstr "Каляндар"
msgid "Columns"
msgstr "Назвы калёнак"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Дадаць гэты SQL-запыт у закладкі"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
@@ -7073,7 +7130,7 @@ msgstr "Азначэньне PARTITION"
msgid "+ Add a new value"
msgstr "Дадаць новага карыстальніка"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Час"
@@ -7318,7 +7375,7 @@ msgid "Protocol version"
msgstr "Вэрсія пратаколу"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Карыстальнік"
@@ -7600,7 +7657,7 @@ msgstr "Стварыць"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Апэратар"
@@ -7799,17 +7856,17 @@ msgstr "Табліцы \"%s\" не існуе!"
msgid "Select binary log to view"
msgstr "Вылучыце двайковы лог для прагляду"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Файлы"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Абразаць паказаныя запыты"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Паказаць поўныя запыты"
@@ -8346,7 +8403,7 @@ msgstr "Прывілеі былі пасьпяхова перазагружан
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Паказаць стан залежных сэрвэраў"
@@ -8487,205 +8544,193 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Паток %s быў пасьпяхова спынены."
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены."
-
-#: server_status.php:230
-msgid "Handler"
-msgstr "Апрацоўнік"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Кэш запытаў"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Патокі"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Часовыя дадзеныя"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Адкладзеныя ўстаўкі"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Кэш ключоў"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Аб'яднаньні"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Сартаваньне"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Каардынатар перакладу"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Скінуць (закрыць) усе табліцы"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Паказаць адкрытыя табліцы"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Паказаць залежныя сэрвэры"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Паказаць стан залежных сэрвэраў"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Скінуць кэш запытаў"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Бягучая інфармацыя"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Выбар сэрвэра"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Статыстыка радку"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Абнавіць"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "у сэкунду"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "у сэкунду"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "выкарыстоўваецца"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "выкарыстоўваецца"
+msgstr[1] "выкарыстоўваецца"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "у сэкунду"
+msgstr[1] "у сэкунду"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Паток %s быў пасьпяхова спынены."
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены."
+
+#: server_status.php:263
+msgid "Handler"
+msgstr "Апрацоўнік"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Кэш запытаў"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Патокі"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Часовыя дадзеныя"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Адкладзеныя ўстаўкі"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Кэш ключоў"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Аб'яднаньні"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Сартаваньне"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Каардынатар перакладу"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Скінуць (закрыць) усе табліцы"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Паказаць адкрытыя табліцы"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Паказаць залежныя сэрвэры"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Паказаць стан залежных сэрвэраў"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Скінуць кэш запытаў"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Бягучая інфармацыя"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Выбар сэрвэра"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Не зьмяняць пароль"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Паказаць адкрытыя табліцы"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Сувязі"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "у гадзіну"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "у хвіліну"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "у сэкунду"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Тып запыту"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Рэплікацыя"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Трафік"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8693,45 +8738,41 @@ msgstr ""
"На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму "
"статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Атрымана"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Адпраўлена"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Падлучэньні"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "максымум адначасовых злучэньняў"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Няўдалых спробаў"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Спынена"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Працэсы"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8741,17 +8782,17 @@ msgstr ""
"якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для "
"захоўваньня выразаў транзакцыі."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8763,11 +8804,11 @@ msgstr ""
"павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў "
"памяці, а не на дыску."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Колькасьць часовых файлаў, створаных mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8775,7 +8816,7 @@ msgstr ""
"Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна "
"створаныя сэрвэрам падчас выкананьня выразаў."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8783,7 +8824,7 @@ msgstr ""
"Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя "
"памылкі (пэўна, дубляваныя ключы)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8792,23 +8833,23 @@ msgstr ""
"Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны "
"паток."
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Колькасьць запісаных INSERT DELAYED радкоў."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Колькасьць выкананых FLUSH-выразаў."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Колькасьць унутраных COMMIT-выразаў."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Колькасьць разоў выдаленьня радка з табліцы."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8818,7 +8859,7 @@ msgstr ""
"яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. "
"Handler_discover паказвае колькасьць высьвятленьняў табліц."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8829,7 +8870,7 @@ msgstr ""
"сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 "
"індэксаваная."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8837,7 +8878,7 @@ msgstr ""
"Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна "
"вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8847,7 +8888,7 @@ msgstr ""
"павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам "
"абмежаваньняў або калі адбываецца сканаваньне індэксаў."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8855,7 +8896,7 @@ msgstr ""
"Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад "
"чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8867,7 +8908,7 @@ msgstr ""
"прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам "
"або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8879,37 +8920,37 @@ msgstr ""
"што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб "
"выкарыстоўваць перавагі індэксаў."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Колькасьць унутраных выразаў ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Колькасьць запытаў устаўкі радка ў табліцу."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Колькасьць зьмененых старонак."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Колькасьць вольных старонак."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8919,7 +8960,7 @@ msgstr ""
"старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць "
"быць скінутыя ці выдаленыя з-за пэўнай прычыны."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8932,11 +8973,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Агульны памер буфэрнага пулу, у старонках."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8945,7 +8986,7 @@ msgstr ""
"адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым "
"парадку."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8953,11 +8994,11 @@ msgstr ""
"Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта "
"адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8965,7 +9006,7 @@ msgstr ""
"Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага "
"пулу, а таму зрабіла аднастаронкавае чытаньне."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8979,55 +9020,55 @@ msgstr ""
"падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны "
"правільна, гэтае значэньне мусіць быць маленькім."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Колькасьць апэрацыяў fsync() на бягучы момант."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Агульная колькасьць чытаньняў дадзеных."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Агульная колькасьць запісаў дадзеных."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, "
"якія былі запісаныя для гэтай мэты."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, "
"якія былі запісаныя для гэтай мэты."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -9035,35 +9076,35 @@ msgstr ""
"Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і "
"таму давялося чакаць, пакуль ён не ачысьціцца."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Колькасьць запісаў у лог."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Колькасьць фізычна выкананых запісаў у лог-файл."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Колькасьць байтаў, запісаных у лог-файл."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Колькасьць створаных старонак."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9071,55 +9112,55 @@ msgstr ""
"Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні "
"вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Колькасьць прачытаных старонак."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Колькасьць запісаных старонак."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
"Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у "
"мілісэкундах."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Колькась радкоў, прачытаных з табліц InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9127,7 +9168,7 @@ msgstr ""
"Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі "
"скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -9135,7 +9176,7 @@ msgstr ""
"Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна "
"выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -9145,11 +9186,11 @@ msgstr ""
"ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць "
"блёкаў, якія выкарастоўваліся адначасова."
-#: server_status.php:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу."
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -9159,15 +9200,15 @@ msgstr ""
"вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць "
"промахаў у кэш можна вылічыць як Key_reads/Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш."
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -9178,17 +9219,17 @@ msgstr ""
"Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў "
"зкампіляваны."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED."
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9196,39 +9237,39 @@ msgstr ""
"Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, "
"значэньне кэшу табліц імаверна вельмі малое."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Колькасьць адкрытых файлаў."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Колькасьць адкрытых табліц."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Колькасьць вольнай памяці для кэшу запытаў."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Колькасьць зваротаў да кэшу."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Колькасьць запытаў, якія былі даданыя ў кэш."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9241,7 +9282,7 @@ msgstr ""
"выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з "
"кэшу."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9249,19 +9290,19 @@ msgstr ""
"Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за "
"значэньня дырэктывы query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Агульная колькасьць блёкаў у кэшы запытыў."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9269,13 +9310,13 @@ msgstr ""
"Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае "
"значэньне ня роўнае 0, варта праверыць індэксы ў табліцах."
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай "
"табліцы."
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -9284,7 +9325,7 @@ msgstr ""
"ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта "
"праверыць індэксы ў табліцах.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9292,17 +9333,17 @@ msgstr ""
"Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай "
"табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)"
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы."
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-"
"патокам."
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9310,13 +9351,13 @@ msgstr ""
"Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі "
"паўтараў транзакцыі."
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным "
"да сэрвэра, які яго кантралюе."
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9324,14 +9365,14 @@ msgstr ""
"Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для "
"стварэньня."
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым "
"long_query_time сэкундаў."
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -9341,25 +9382,25 @@ msgstr ""
"значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай "
"зьменнай sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
"Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх "
"слупкоў."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Колькасьць адсартаваных радкоў."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9371,7 +9412,7 @@ msgstr ""
"існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а "
"пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9381,11 +9422,11 @@ msgstr ""
"вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае "
"ў чырвоны колер, варта павялічыць значэньне thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Колькасьць адкрытых на бягучы момант злучэньняў."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9397,7 +9438,7 @@ msgstr ""
"thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага "
"павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі."
@@ -9522,7 +9563,7 @@ msgstr "Налады і зьменныя сэрвэра"
msgid "Session value"
msgstr "Значэньне сэсіі"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Глябальнае значэньне"
@@ -9803,41 +9844,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Праглядзець зьнешнія значэньні"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID устаўленага радку: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "У выглядзе PHP-коду"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "У выглядзе SQL-запыту"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Праверыць SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Праблемы з індэксамі для табліцы `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Метка"
@@ -10228,25 +10269,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Ніводны радок ня выбраны"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Выбраць палі (прынамсі адно):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Колькасьць радкоў на старонку"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Парадак прагляду:"
@@ -10546,6 +10587,14 @@ msgstr "Назва прагляду"
msgid "Rename view to"
msgstr "Перайменаваць табліцу ў"
+#~ msgid "Theme / Style"
+#~ msgstr "Тэма / Стыль"
+
+#, fuzzy
+#~| msgid "per second"
+#~ msgid "seconds"
+#~ msgstr "у сэкунду"
+
#, fuzzy
#~| msgid "Query results operations"
#~ msgid "Query results"
diff --git a/po/be@latin.po b/po/be@latin.po
index 97cab7a941..84a83cfa22 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Pakazać usie"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie "
"mižvakonnych ŭzajemadziejańniaŭ"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Pošuk"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Pošuk"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Imia kluča"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Apisańnie"
@@ -138,7 +138,7 @@ msgstr "Kamentar da tablicy"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -153,7 +153,7 @@ msgstr "Nazvy kalonak"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -169,7 +169,7 @@ msgstr "Typ"
msgid "Null"
msgstr "Nul"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -198,7 +198,7 @@ msgstr "Źviazanaja z"
msgid "Comments"
msgstr "Kamentary"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -209,12 +209,12 @@ msgstr "Kamentary"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nie"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -229,7 +229,7 @@ msgstr "Nie"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -248,11 +248,11 @@ msgstr "Prahladzieć damp (schiemu) bazy dadzienych"
msgid "No tables found in database."
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Vybrać usio"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Źniać usie adznaki"
@@ -274,7 +274,7 @@ msgstr "Baza dadzienych %s była skapijavanaja ŭ %s"
msgid "Rename database to"
msgstr "Pierajmienavać bazu dadzienych u"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Kamanda"
@@ -339,7 +339,7 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -369,7 +369,7 @@ msgstr "Relacyjnaja schiema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tablica"
@@ -385,7 +385,7 @@ msgstr "Radki"
msgid "Size"
msgstr "Pamier"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "vykarystoŭvajecca"
@@ -411,7 +411,7 @@ msgstr "Apošniaje abnaŭleńnie"
msgid "Last check"
msgstr "Apošniaja pravierka"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -433,25 +433,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Paradak"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "pramy"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "advarotny"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Pakazać"
@@ -474,7 +474,7 @@ msgstr "Vydalić"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Abo"
@@ -507,39 +507,39 @@ msgstr "Vykarystoŭvać tablicy"
msgid "SQL query on database %s :"
msgstr "SQL-zapyt da BD %s:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Vykanać zapyt"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "U dostupie admoŭlena"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "prynamsi adno z słovaŭ"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "usie słovy"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "dakładnuju frazu"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "rehularny vyraz"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Vyniki pošuku \"%s\" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -548,20 +548,20 @@ msgstr[0] "%s supadzieńniaŭ u tablicy %s"
msgstr[1] "%s supadzieńniaŭ u tablicy %s"
msgstr[2] "%s supadzieńniaŭ u tablicy %s"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Prahlad"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Damp dadzienych tablicy"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -572,7 +572,7 @@ msgstr "Damp dadzienych tablicy"
msgid "Delete"
msgstr "Vydalić"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -581,62 +581,62 @@ msgstr[0] "Ahułam: %s supadzieńniaŭ"
msgstr[1] "Ahułam: %s supadzieńniaŭ"
msgstr[2] "Ahułam: %s supadzieńniaŭ"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Pošuk u bazie dadzienych"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Znajści:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Słovy, padzielenyja prahałam (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "U tablicy(ach):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Unutry pola:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tablica %s była ačyščanaja"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Vyhlad %s byŭ vydaleny"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tablica %s była vydalenaja"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -645,112 +645,112 @@ msgstr ""
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
"%sdakumentacyi%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vyhlad"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikacyja"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Usiaho"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
"%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-"
"servery."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Z adznačanymi:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Adznačyć usio"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Źniać usie adznaki"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspart"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Versija dla druku"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Ačyścić"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Vydalić"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Pravieryć tablicu"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Aptymizavać tablicu"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Ramantavać tablicu"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizavać tablicu"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Słoŭnik dadzienych"
@@ -765,9 +765,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Baza dadzienych"
@@ -783,8 +783,8 @@ msgstr ""
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Stan"
@@ -930,7 +930,7 @@ msgstr "Zakładka była vydalenaja."
msgid "Showing bookmark"
msgstr "Pakazvajučy zakładku"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Zakładka %s stvoranaja"
@@ -958,7 +958,7 @@ msgstr ""
"kali vy nie pavialičycie limity vykanańnia php-skryptoŭ."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -984,15 +984,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Kamandy \"DROP DATABASE\" adklučanyja."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Ci sapraŭdy vy žadajecie "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!"
@@ -1096,188 +1096,230 @@ msgstr "Vydalić vybranych karystalnikaŭ"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Vybar servera"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Live query chart"
-msgstr "U vyhladzie SQL-zapytu"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Ahułam"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Pracesy"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Pierajmienavać bazu dadzienych u"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Pierajmienavać bazu dadzienych u"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Kapijavać bazu dadzienych u"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Kadyroŭka"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Stvaryć tablicu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Vykarystoŭvać tablicy"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Pošuk"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "in query"
-msgid "Hide search results"
-msgstr "pa zapytu"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Show search results"
-msgstr "U vyhladzie SQL-zapytu"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Prahlad"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Vydaleńnie %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query box"
-msgstr "pa zapytu"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Show query box"
-msgstr "U vyhladzie SQL-zapytu"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Mašyny"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redagavać"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Vybar servera"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Live query chart"
+msgstr "U vyhladzie SQL-zapytu"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Ahułam"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Vybar servera"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Pracesy"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Padłučeńni"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Databases statistics"
+msgid "Query statistics"
+msgstr "Statystyka bazaŭ dadzienych"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Pracesy"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Pierajmienavać bazu dadzienych u"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Pierajmienavać bazu dadzienych u"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Kapijavać bazu dadzienych u"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Kadyroŭka"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Stvaryć tablicu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Vykarystoŭvać tablicy"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Pošuk"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "in query"
+msgid "Hide search results"
+msgstr "pa zapytu"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Show search results"
+msgstr "U vyhladzie SQL-zapytu"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Prahlad"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Vydaleńnie %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "in query"
+msgid "Hide query box"
+msgstr "pa zapytu"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Show query box"
+msgstr "U vyhladzie SQL-zapytu"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Mašyny"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1285,79 +1327,79 @@ msgstr "Redagavać"
msgid "Save"
msgstr "Zachavać"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Schavać"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "pa zapytu"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search criteria"
msgstr "U vyhladzie SQL-zapytu"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignaravać"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Vybierycie spasyłkavy kluč"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Vybierycie źniešni kluč"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Zgieneravać parol"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Zgieneravać"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Źmianić parol"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pan"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1365,129 +1407,129 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "Bazy dadzienych adsutničajuć"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nijakaja"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Papiaredniaja staronka"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Nastupnaja staronka"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ahułam"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Dvajkovy"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Sak"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Kra"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Tra"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Čer"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Lip"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Žni"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Kas"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Sak"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Kra"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1495,178 +1537,178 @@ msgid "May"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Čer"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Žni"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Vier"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Śn"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ndz"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pan"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Aŭt"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Piat"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ndz"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Pan"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Aŭt"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Sier"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Cač"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Piat"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ndz"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pan"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Aŭt"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sier"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cač"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Piat"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "vykarystoŭvajecca"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1764,7 +1806,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Bazy dadzienych"
@@ -1836,25 +1878,25 @@ msgstr "%s była adklučanaja dla retaha MySQL-servera."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Niapravilnaja baza dadzienych"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Niekarektnaje imia tablicy"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tablica %s była pierajmienavanaja ŭ %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1886,10 +1928,9 @@ msgstr "Tema %s nia znojdzienaja!"
msgid "Theme path not found for theme %s!"
msgstr "Nia znojdzieny šlach da temy %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Styl"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1897,7 +1938,6 @@ msgstr "Niemahčyma padłučycca: niapravilnyja nałady."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Zaprašajem u %s"
@@ -2052,7 +2092,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tablic"
@@ -2144,7 +2184,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2192,7 +2231,7 @@ msgid "Documentation"
msgstr "Dakumentacyja"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-zapyt"
@@ -2200,123 +2239,123 @@ msgstr "SQL-zapyt"
msgid "MySQL said: "
msgstr "Adkaz MySQL: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Tłumačyć SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Nie tłumačyć SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Biez PHP-kodu"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Stvaryć PHP-kod"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Abnavić"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Nie praviarać SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Pravieryć SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mašyny"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Prafilavańnie"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Pieršaja staronka"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Papiaredniaja staronka"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Apošniaja staronka"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Pierajści da bazy dadzienych \"%s\"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie "
"na %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2328,42 +2367,42 @@ msgstr ""
msgid "Structure"
msgstr "Struktura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Ustavić"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Aperacyi"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "tečka web-servera dla zahruzki fajłaŭ"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2720,7 +2759,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4691,7 +4730,7 @@ msgstr "Dyzajner"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Pryvilei"
@@ -4703,7 +4742,7 @@ msgstr "Pracedury"
msgid "Return type"
msgstr "Typ pracedury"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4919,9 +4958,9 @@ msgstr "Kadyroŭka fajła:"
msgid "Compression:"
msgstr "Ścisk"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Nijakaja"
@@ -5072,39 +5111,57 @@ msgstr ""
msgid "Language"
msgstr "Mova"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Dadać/vydalić kalonku kryteru"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "radkoŭ, pačynajučy z zapisu #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "haryzantalna"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "haryzantalna (paviernutyja zahałoŭki)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertykalna"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "u režymie %s i paŭtarać zahałoŭki praz kožnyja %s radkoŭ"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sartavać pa klučy"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5117,102 +5174,102 @@ msgstr "Sartavać pa klučy"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Nałady"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Častkovyja teksty"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Poŭnyja teksty"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Kluč suviazi"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Adlustravanaje pole suviazi"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pieraŭtvareńnie MIME-typu braŭzeram"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Skapijavać"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Radok byŭ vydaleny"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Spynić"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "pa zapytu"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Pakazanyja zapisy"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "usiaho"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Zapyt vykonvaŭsia %01.4f sek"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Źmianić"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Versija dla druku (z usim tekstam)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Pakazać PDF-schiemu"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Stvaryć"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Suviaź nia znojdzienaja"
@@ -5260,7 +5317,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puł buferu"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Stan InnoDB"
@@ -5790,7 +5847,7 @@ msgstr "Dastupnyja MIME-typy"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Chost"
@@ -5999,7 +6056,7 @@ msgstr "SQL-vynik"
msgid "Generated by"
msgstr "Stvorany"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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ŭ)."
@@ -6161,7 +6218,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Dadać novaje pole"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Niama źmienaŭ"
@@ -6490,14 +6547,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Źmiennaja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Značeńnie"
@@ -6739,20 +6796,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Dvajkovy łog"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Źmiennyja"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Kadyroŭki"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Mašyny"
@@ -6799,11 +6856,11 @@ msgstr ""
msgid "Columns"
msgstr "Nazvy kalonak"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Dadać hety SQL-zapyt u zakładki"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
@@ -7045,7 +7102,7 @@ msgstr "Aznačeńnie PARTITION"
msgid "+ Add a new value"
msgstr "Dadać novaha karystalnika"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Čas"
@@ -7293,7 +7350,7 @@ msgid "Protocol version"
msgstr "Versija pratakołu"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Karystalnik"
@@ -7575,7 +7632,7 @@ msgstr "Stvaryć"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Aperatar"
@@ -7773,17 +7830,17 @@ msgstr "Tablicy \"%s\" nie isnuje!"
msgid "Select binary log to view"
msgstr "Vyłučycie dvajkovy łog dla prahladu"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Fajły"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Abrazać pakazanyja zapyty"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Pakazać poŭnyja zapyty"
@@ -8321,7 +8378,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Pakazać stan zaležnych serveraŭ"
@@ -8459,205 +8516,194 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Patok %s byŭ paśpiachova spynieny."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Apracoŭnik"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Keš zapytaŭ"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Patoki"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Časovyja dadzienyja"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Adkładzienyja ŭstaŭki"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Keš klučoŭ"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Ab'jadnańni"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Sartavańnie"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Kaardynatar pierakładu"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Skinuć (zakryć) usie tablicy"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Pakazać adkrytyja tablicy"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Pakazać zaležnyja servery"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Pakazać stan zaležnych serveraŭ"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Skinuć keš zapytaŭ"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Biahučaja infarmacyja"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Vybar servera"
-
-#: server_status.php:368
-#, fuzzy
-#| msgid "Databases statistics"
-msgid "Query statistics"
-msgstr "Statystyka bazaŭ dadzienych"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Abnavić"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "u sekundu"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "u sekundu"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "vykarystoŭvajecca"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "vykarystoŭvajecca"
+msgstr[1] "vykarystoŭvajecca"
+msgstr[2] "vykarystoŭvajecca"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "u sekundu"
+msgstr[1] "u sekundu"
+msgstr[2] "u sekundu"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Patok %s byŭ paśpiachova spynieny."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Apracoŭnik"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Keš zapytaŭ"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Patoki"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Časovyja dadzienyja"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Adkładzienyja ŭstaŭki"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Keš klučoŭ"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Ab'jadnańni"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Sartavańnie"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Kaardynatar pierakładu"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Skinuć (zakryć) usie tablicy"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Pakazać adkrytyja tablicy"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Pakazać zaležnyja servery"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Pakazać stan zaležnych serveraŭ"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Skinuć keš zapytaŭ"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Biahučaja infarmacyja"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Vybar servera"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nie źmianiać parol"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Pakazać adkrytyja tablicy"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Suviazi"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "u hadzinu"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "u chvilinu"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "u sekundu"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Typ zapytu"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8665,45 +8711,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Atrymana"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Adpraŭlena"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Padłučeńni"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "maksymum adnačasovych złučeńniaŭ"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Niaŭdałych sprobaŭ"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Spyniena"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Pracesy"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8713,17 +8755,17 @@ msgstr ""
"jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł "
"dla zachoŭvańnia vyrazaŭ tranzakcyi."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8735,11 +8777,11 @@ msgstr ""
"pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ "
"pamiaci, a nie na dysku."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8747,7 +8789,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:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8755,7 +8797,7 @@ msgstr ""
"Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja "
"pamyłki (peŭna, dublavanyja klučy)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8764,23 +8806,23 @@ msgstr ""
"Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj "
"ułasny patok."
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Kolkaść vykananych FLUSH-vyrazaŭ."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Kolkaść unutranych COMMIT-vyrazaŭ."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8790,7 +8832,7 @@ msgstr ""
"viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. "
"Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8801,7 +8843,7 @@ msgstr ""
"skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 "
"indeksavanaja."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8810,7 +8852,7 @@ msgstr ""
"vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra "
"indeksavanyja."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8820,7 +8862,7 @@ msgstr ""
"pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham "
"abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8828,7 +8870,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:858
+#: server_status.php:867
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 "
@@ -8841,7 +8883,7 @@ msgstr ""
"całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć "
"klučy."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8853,37 +8895,37 @@ msgstr ""
"aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja "
"tak, kab vykarystoŭvać pieravahi indeksaŭ."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo "
"niaźmienienych)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Kolkaść źmienienych staronak."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Kolkaść volnych staronak."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8893,7 +8935,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:868
+#: server_status.php:877
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 "
@@ -8906,11 +8948,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Ahulny pamier bufernaha pułu, u staronkach."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8919,7 +8961,7 @@ msgstr ""
"adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym "
"paradku."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8927,11 +8969,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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8939,7 +8981,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:874
+#: server_status.php:883
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 "
@@ -8953,55 +8995,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Ahulnaja kolkaść zapisaŭ dadzienych."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -9009,35 +9051,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Kolkaść zapisaŭ u łog."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Kolkaść stvoranych staronak."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9046,54 +9088,54 @@ msgstr ""
"vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho "
"ŭ bajty."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Kolkaść pračytanych staronak."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Kolkaść zapisanych staronak."
-#: server_status.php:897
+#: server_status.php:906
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:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9101,7 +9143,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:907
+#: server_status.php:916
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."
@@ -9109,7 +9151,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:908
+#: server_status.php:917
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 "
@@ -9119,11 +9161,11 @@ msgstr ""
"stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, "
"jakija vykarastoŭvalisia adnačasova."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9133,15 +9175,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9152,17 +9194,17 @@ msgstr ""
"Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ "
"zkampilavany."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9170,39 +9212,39 @@ msgstr ""
"Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, "
"značeńnie kešu tablic imavierna vielmi małoje."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Kolkaść adkrytych fajłaŭ."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Kolkaść adkrytych tablic."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Kolkaść zvarotaŭ da kešu."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9215,7 +9257,7 @@ msgstr ""
"vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać "
"z kešu."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9223,19 +9265,19 @@ msgstr ""
"Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za "
"značeńnia dyrektyvy query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9243,13 +9285,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9258,7 +9300,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9266,17 +9308,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9284,13 +9326,13 @@ msgstr ""
"Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi "
"paŭtaraŭ tranzakcyi."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9298,14 +9340,14 @@ msgstr ""
"Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla "
"stvareńnia."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9315,25 +9357,25 @@ msgstr ""
"hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia "
"systemnaj źmiennaj sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
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:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Kolkaść adsartavanych radkoŭ."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9345,7 +9387,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:945
+#: server_status.php:954
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 "
@@ -9355,11 +9397,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9371,7 +9413,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi."
@@ -9494,7 +9536,7 @@ msgstr "Nałady i źmiennyja servera"
msgid "Session value"
msgstr "Značeńnie sesii"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Hlabalnaje značeńnie"
@@ -9768,41 +9810,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Prahladzieć źniešnija značeńni"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID ustaŭlenaha radku: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "U vyhladzie PHP-kodu"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "U vyhladzie SQL-zapytu"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Pravieryć SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Prablemy z indeksami dla tablicy `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Mietka"
@@ -10191,25 +10233,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Nivodny radok nia vybrany"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Vybrać pali (prynamsi adno):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Kolkaść radkoŭ na staronku"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Paradak prahladu:"
@@ -10506,8 +10548,12 @@ msgstr "Nazva prahladu"
msgid "Rename view to"
msgstr ""
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Styl"
+
+#~ msgid "seconds"
+#~ msgstr "u sekundu"
+
#~ msgid "Query results"
#~ msgstr "Dziejańni z vynikami zapytaŭ"
@@ -10521,8 +10567,6 @@ msgstr ""
#~ msgid "Show processes"
#~ msgstr "Pakazać pracesy"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Skinuć"
@@ -10541,32 +10585,20 @@ msgstr ""
#~ "Statystyka zapytaŭ: Z momantu zapusku %s zapytaŭ było adpraŭlena na "
#~ "server."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Pryvilei byli paśpiachova pierazahružanyja."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Typ zapytu"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Dadać novaha karystalnika"
-#, fuzzy
-#~| msgid "Create"
#~ msgid "Create User"
#~ msgstr "Stvaryć"
diff --git a/po/bg.po b/po/bg.po
index dfb935db2d..8dac4c178a 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,9 +3,9 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-06-14 08:31+0200\n"
-"Last-Translator: \n"
+"Last-Translator: \n"
"Language-Team: bulgarian \n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Показване всички"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от "
"един прозорец в друг от съображения за сигурност."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Търсене"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Търсене"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Име на ключ"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Описание"
@@ -137,7 +137,7 @@ msgstr "Коментари към таблицата"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kолона"
@@ -150,7 +150,7 @@ msgstr "Kолона"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -166,7 +166,7 @@ msgstr "Тип"
msgid "Null"
msgstr "Празно"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Свързана към"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Коментари"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Преглед на схема (дъмп) на БД"
msgid "No tables found in database."
msgstr "В БД няма таблици."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Маркиране всички"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Размаркиране всички"
@@ -271,7 +271,7 @@ msgstr "БД %s беше копирана като %s"
msgid "Rename database to"
msgstr "Преименуване БД на"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Команда"
@@ -332,7 +332,7 @@ msgstr "Показване на копираната БД"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Редакция или експорт на релационна схе
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Таблица"
@@ -373,7 +373,7 @@ msgstr "Редове"
msgid "Size"
msgstr "Размер"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "зает"
@@ -399,7 +399,7 @@ msgstr "Последно обновление"
msgid "Last check"
msgstr "Последна проверка"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "строител"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Сортиране"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Възходящо"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Низходящо"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Показване"
@@ -460,7 +460,7 @@ msgstr "Изтрий"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Или"
@@ -489,58 +489,58 @@ msgstr "Използване таблиците"
msgid "SQL query on database %s :"
msgstr "SQL заявка към БД %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Изпълни заявката"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Отказан достъп"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "поне една от думите"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "всички думи"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "точната фраза"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "като регулярен израз"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Резултати от търсенето на \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s съвпадение в таблица %s "
msgstr[1] "%s съвпадения в таблица %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Прелистване"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Изтриване на съвпаденията от таблицата %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,171 +551,171 @@ msgstr "Изтриване на съвпаденията от таблицата
msgid "Delete"
msgstr "Изтриване"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Общо: %s съвпадение"
msgstr[1] "Общо: %s съвпадения"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Търсене в БД"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Дума(и) или стойност(и) за търсене (знак за заместване: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Намери:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Думите трябва да се разделят с интервал (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "В таблицата(ите):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "В колона:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "В БД няма таблици"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблицата %s беше изчистена"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Изглед %s беше изтрит"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблицата %s беше изтрита"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Проследяването е активно."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Проследяването е неактивно."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s"
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Изглед"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Репликация"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Сума"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Когато има отметка:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Маркиране всички"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Отмаркиране всички"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Маркиране на таблиците със загубено място"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Експорт"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Преглед за печат"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Изчистване"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Унищожаване"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Проверка на таблицата"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Оптимизация на таблицата"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Поправяне на таблицата"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Анализиране на таблицата"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Добавяне представка към таблица"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Замяна на представката на таблица"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Копиране на таблицата с представка"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Речник на данните"
@@ -730,9 +730,9 @@ msgstr "Следени таблици"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "БД"
@@ -748,8 +748,8 @@ msgstr "Създаден"
msgid "Updated"
msgstr "Съвременен"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Състояние"
@@ -895,7 +895,7 @@ msgstr "Белязката беше изтриа."
msgid "Showing bookmark"
msgstr "Показване на белязка"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Белязка %s беше създадена"
@@ -920,7 +920,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -948,15 +948,15 @@ msgstr "Щракване за избор"
msgid "Click to unselect"
msgstr "Щракване за отмяна на избора"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" заявката е забранена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Наистина ли искате да изпълните "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Вие ще УНИЩОЖИТЕ цялата БД!"
@@ -1046,156 +1046,198 @@ msgstr "Изтриване на маркираните потребители"
msgid "Close"
msgstr "Затваряне"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Избор на сървър"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Hide query box"
-msgid "Live query chart"
-msgstr "Скриване формата за заявки"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Общо"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Зареждане"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Обработка на заявката"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Грешка при обработка на заявката"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Изтриване на колона"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Добавяне на първичен ключ"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Преименуване БД"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Презареждане БД"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Копиране БД"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Промяна знаков набор"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Таблицата трябва да има поне една колона"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Създаване таблица"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Вмъкване на таблица"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Търсене"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Скриване резултати от търсенето"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Показване резултати от търсенето"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Прелистване"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Изтриване"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени."
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Скриване формата за заявки"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Показване формата за заявки"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Бърза редакция"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редакция"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Избор на сървър"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Hide query box"
+msgid "Live query chart"
+msgstr "Скриване формата за заявки"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Общо"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Избор на сървър"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Процеси"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Конекции"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL заявки"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Статистика за заявките"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Зареждане"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Обработка на заявката"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Грешка при обработка на заявката"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Изтриване на колона"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Добавяне на първичен ключ"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Преименуване БД"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Презареждане БД"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Копиране БД"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Промяна знаков набор"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Таблицата трябва да има поне една колона"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Създаване таблица"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Вмъкване на таблица"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Търсене"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Скриване резултати от търсенето"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Показване резултати от търсенето"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Прелистване"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Изтриване"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени."
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Скриване формата за заявки"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Показване формата за заявки"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Бърза редакция"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1203,67 +1245,67 @@ msgstr "Редакция"
msgid "Save"
msgstr "Зпазване"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Скриване"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Скриване критерий за търсене"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Показване критерий за търсене"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнориране"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Избор външен ключ"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Изберете първичен или уникален ключ"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Изберете колона за показване"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Добавяне опция към колона "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Генериране парола"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генериране"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Смяна парола"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Още"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1273,258 +1315,258 @@ msgstr ""
"версия е %s, излязла на %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", актуална стабилна версия:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "актуално"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Преден"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Следващ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Днес"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "януари"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "февруари"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "март"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "април"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "май"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "юни"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "юли"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "август"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "септември"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "октомври"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "ноември"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "декември"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "яну"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "фев"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "март"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "май"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "юни"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "юли"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "септ"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "ное"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "дек"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "неделя"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "понеделник"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "вторник"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "сряда"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "четвъртък"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "петък"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "събота"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "нд"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "пн"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "вт"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "ср"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "чт"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "пт"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "сб"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "нд"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "пн"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "вт"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "ср"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "чт"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "пт"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Сед"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Час"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "минута"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "секунда"
@@ -1617,7 +1659,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "БД"
@@ -1683,25 +1725,25 @@ msgstr "%s е изключен за този MySQL сървър."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Този MySQL сървър не поддържа хранилището на данни %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Невалидна БД"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Невалидно име на таблица"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Грешка при преименуване на таблица %1$s в %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Таблица %s беше преименувана на %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1733,10 +1775,9 @@ msgstr "Тема %s не е намерена!"
msgid "Theme path not found for theme %s!"
msgstr "Не е открит път към тема %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Тема / Стил"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1744,7 +1785,6 @@ msgstr "Връзката не може да бъде осъществена: н
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
@@ -1893,7 +1933,7 @@ msgstr "споделен"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Таблици"
@@ -1977,7 +2017,6 @@ msgstr "Невалиден хост за сървър %1$s. Прегледайт
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сървър"
@@ -2025,7 +2064,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL заявка"
@@ -2033,119 +2072,119 @@ msgstr "SQL заявка"
msgid "MySQL said: "
msgstr "MySQL отговори: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Обяснение на SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Пропусни Explain SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Без PHP код"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Създаване на PHP код"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Презареждане"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Пропусни Validate SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Валидиране на SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Профилиране"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Б"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "КБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "ТБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "ПБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "ЕБ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%e %B %Y в %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дена, %s часа, %s минути и %s секунди"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Начало"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Предишен"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Край"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Показване БД "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Функционалността %s се влияе от известен дефект, вж. %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2157,41 +2196,41 @@ msgstr "Функционалността %s се влияе от известе
msgid "Structure"
msgstr "Структура"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Вмъкване"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Операции"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Разглеждане на компютъра:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Избор от директорията за качване %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Директорията която сте указали за upload не може да бъде достигната"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Няма файлве за качване"
@@ -2532,7 +2571,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr "Показване на двоичните данни по подразбиране в шестнадесетичен вид"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Показване на двоичните данни в шестнадесетичен вид"
@@ -4410,7 +4449,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Права"
@@ -4422,7 +4461,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4604,9 +4643,9 @@ msgstr "Знаков набор на файла:"
msgid "Compression:"
msgstr "Компресия:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Няма"
@@ -4725,37 +4764,57 @@ msgstr ""
msgid "Language"
msgstr "Език"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "Колони в текство поле"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Щракване за избор"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d не е валиден номер на ред."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "ред(а) започвайки от №"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "хоризонтален"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "хоризонтален (обърнати хедъри)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "вертикален"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "в %s вид и повтаряне на имената на колоните през всеки %s клетки"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Сортиране по ключ"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4768,92 +4827,92 @@ msgstr "Сортиране по ключ"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Настройки"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Частични текстове"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Пълни текстове"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Показване на двоичните данни"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Показване на BLOB-данните"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Браузърна трансформация"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Копиране"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Редът беше изтрит"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Спиране"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "в зявката"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Показване на записи"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "общо"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Заявката отне %01.4f секунди"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Промяна"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Операции с резулатата от заявката"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Преглед за печат (с пълните текстове)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Показване на диаграма"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Създаване на изглед"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Връзките не са намерени"
@@ -4897,7 +4956,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Състояние"
@@ -5338,7 +5397,7 @@ msgstr "Показване MIME типове"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Хост"
@@ -5540,7 +5599,7 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерирано от"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL върна празен резултат (т.е. нула редове)."
@@ -5691,7 +5750,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Няма промяна"
@@ -6018,14 +6077,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Променлива"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Стойност"
@@ -6249,20 +6308,20 @@ msgid "Synchronize"
msgstr "Синхронизиране"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Двоичен дневник"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Променливи"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Знакови набори"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Хранилища"
@@ -6307,11 +6366,11 @@ msgstr "Изчистване"
msgid "Columns"
msgstr "Колони"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Отбелязване SQL заявката"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Всеки потребител да има достъп до тази белязка"
@@ -6539,7 +6598,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "+ Добавяне на нова стойност"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Време"
@@ -6720,7 +6779,7 @@ msgid "Protocol version"
msgstr "Версия на протокола"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Потребител"
@@ -6967,7 +7026,7 @@ msgstr ""
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Оператор"
@@ -7141,17 +7200,17 @@ msgstr "Файлът не съществува"
msgid "Select binary log to view"
msgstr "Изберете двоичен журнал за преглед"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Файлове"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Съкращаване на показаните заявки"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Показване на пълните заявки"
@@ -7678,7 +7737,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7811,241 +7870,226 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Нишка %s беше успешно спряна."
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена."
-
-#: server_status.php:230
-msgid "Handler"
-msgstr ""
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Кеш на заявките"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Нишки"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Временни данни"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Забавени вмъквания"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Кеш на ключове"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr ""
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Сортиране"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Координатор на транзакциите"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr ""
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Показване на отворените теблици"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr ""
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Информация за състоянието на MySQL сървъра"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Избор на сървър"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Статистика за заявките"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Презареждане"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "секунда"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "секунда"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "минута"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "минута"
+msgstr[1] "минута"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "секунда"
+msgstr[1] "секунда"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Нишка %s беше успешно спряна."
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена."
+
+#: server_status.php:263
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Кеш на заявките"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Нишки"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Временни данни"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Забавени вмъквания"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Кеш на ключове"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Сортиране"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Координатор на транзакциите"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Показване на отворените теблици"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Информация за състоянието на MySQL сървъра"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Избор на сървър"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Да не се сменя паролата"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Показване на отворените теблици"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Релации"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "на час"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "на минута"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "на секунда"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Тип на заявката"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Този MySQL сървър работи от %s. Стартиран е на %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Статус репликация"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Трафик"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Получени"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Изпратени"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Конекции"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "максимален брой на едновременните конекции"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Провалили се опити"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Прекъснати"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Процеси"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
#| msgid "Limits the number of simultaneous connections the user may have."
msgid "The number of failed attempts to connect to the MySQL server."
@@ -8053,23 +8097,23 @@ msgstr ""
"Ограничава броя на едновременните връзки, които потребителят може да държи "
"отворени."
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8077,78 +8121,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Брой на създадените от mysqld временни файлове."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Брой на вмъкнатите посредством INSERT DELAYED редове."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8156,7 +8200,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8164,42 +8208,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Брой заявки за обновяване на ред в таблица."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Брой заявки за вмъкване на ред в таблица."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8207,33 +8251,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8242,227 +8286,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Броят на заявки за запис в дневника."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Броят вмъкнати редове в InnoDB таблици."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Броят обновени редове в InnoDB таблици."
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Брой на отворените файлове."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Брой на отворените потоци (използва се главно за логове)."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Брой на отвотените таблици."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Броят попадения в кеш."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8470,99 +8514,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Брой временни таблици отворени от подчинена SQL нишка."
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Брой на сортираните редове."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8570,18 +8614,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Брой текущо отворени връзки."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8589,7 +8633,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Броят на нишките, които не са спящи."
@@ -8712,7 +8756,7 @@ msgstr "Сървърни променливи и настройки"
msgid "Session value"
msgstr "Сесийна стойност"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Глобална стойност"
@@ -8984,39 +9028,39 @@ msgstr "Ключът е твърде къс, трябва да бъде поне
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Разглеждане на външни стойности"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Показване като PHP-код"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Валидиран SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем с индексите на таблица `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Етикет"
@@ -9392,23 +9436,23 @@ msgstr ""
msgid "No rows selected"
msgstr "Няма върнати редове"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Избор на колона (поне една):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Брой редове на страница"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Подреждане по:"
@@ -9688,6 +9732,12 @@ msgstr "Име на ИЗГЛЕД"
msgid "Rename view to"
msgstr "Преименуване на изгледа на"
+#~ msgid "Theme / Style"
+#~ msgstr "Тема / Стил"
+
+#~ msgid "seconds"
+#~ msgstr "секунда"
+
#~ msgid "Query results"
#~ msgstr "Резулат oт заявка"
diff --git a/po/bn.po b/po/bn.po
index 444ddc0227..9575b4b260 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন \n"
"Language-Team: bangla \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "সবগুলো দেখাও"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"করেছেন, অথবা আপনার ব্রাউজার এর নিরাপত্তা সেটিংস্ এমন ভাবে কনফিগার করা আছে যে "
"দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "খুঁজুন"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "খুঁজুন"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "বর্ণনা"
@@ -135,7 +135,7 @@ msgstr "টেবিলের মন্তব্য সমূহ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "কলামের"
@@ -148,7 +148,7 @@ msgstr "কলামের"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "ধরন"
@@ -164,7 +164,7 @@ msgstr "ধরন"
msgid "Null"
msgstr "খালি"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -193,7 +193,7 @@ msgstr "সংযুক্তি হবে"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -204,12 +204,12 @@ msgstr "মন্তব্যসমূহ"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "না"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -224,7 +224,7 @@ msgstr "না"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -243,11 +243,11 @@ msgstr "ডাটাবেজ ওর (schema) ভান্ডারটি দে
msgid "No tables found in database."
msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "সব সিলেক্ট করুন"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "সবগুলো অনির্বাচিত হোক"
@@ -269,7 +269,7 @@ msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছ
msgid "Rename database to"
msgstr "ডাটাবেজ রিনেম কর"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "নির্দেশ"
@@ -333,7 +333,7 @@ msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তি
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -363,7 +363,7 @@ msgstr "Relational schema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "টেবিল"
@@ -379,7 +379,7 @@ msgstr "Rows"
msgid "Size"
msgstr "আকার"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in use"
@@ -405,7 +405,7 @@ msgstr "সর্বশেষ আপডেট"
msgid "Last check"
msgstr "Last check"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -426,25 +426,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "সাজাঁন"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ascending"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descending"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "দেখান"
@@ -467,7 +467,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "অথবা"
@@ -500,39 +500,39 @@ msgstr "টেবিল ব্যাবহারকারী"
msgid "SQL query on database %s :"
msgstr "SQL query on database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Submit Query"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "প্রবেশ নিষেধ"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "at least one of the words"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "সব শব্দ"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "the exact phrase"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "as regular expression"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Search results for \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -540,20 +540,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s match(es) inside table %s "
msgstr[1] "%s match(es) inside table %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "ব্রাউজ করুন"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -564,7 +564,7 @@ msgstr "টেবিল এর জন্য ডাটা ডাম্পিং
msgid "Delete"
msgstr "মুছে ফেল"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -572,173 +572,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "Total: %s match(es)"
msgstr[1] "Total: %s match(es)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "ডাটাবে এ খুজুঁনSearch in database"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Find:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Words are separated by a space character (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Inside table(s):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Inside table(s):"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Table %s has been emptied"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "View %s has been dropped"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Table %s has been dropped"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "View"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replication"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "যোগফল"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন"
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "সব পরীক্ষা করুন"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Uncheck All"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Print view"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "খালি"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "মুছে ফেল"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "টেবিল পরীক্ষা কর"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "টেবিল অপটিমাইজ করুন"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "টেবিল রিপেয়ার করুন"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "টেবিল বিশ্লেষণ কর"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "কোন ডাটাবেজ নাই"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Replace table data with file"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Replace table data with file"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "ডাটা অভিধান"
@@ -754,9 +754,9 @@ msgstr "টেবিল পরীক্ষা কর"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "ডাটাবেজ"
@@ -774,8 +774,8 @@ msgstr "তৈরী করুন"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "অবস্থা"
@@ -922,7 +922,7 @@ msgstr "বুকমার্কটি মুছে ফেলা হয়েছে
msgid "Showing bookmark"
msgstr "বুকমার্ক দেখান"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "বুকমার্ক %s তৈরী করা হয়েছে"
@@ -949,7 +949,7 @@ msgstr ""
"won't be able to finish this import unless you increase php time limits."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -975,15 +975,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "আপনি কি সত্যি চান?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন"
@@ -1087,183 +1087,225 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Server Choice"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL query"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "মোট"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "লোকাল"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Processes"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "ডাটাবেজ রিনেম কর"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "ডাটাবেজ রিনেম কর"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "ডাটাবেজ কপি করঃ"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Charset"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "একটি নতুন পাতা তৈরী কর"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "টেবিল ব্যাবহারকারী"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "খুঁজুন"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL query"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL query"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "ব্রাউজ করুন"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "%s মুছে ফেলা হচ্ছে"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL query"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL query"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "ইঞ্জিনসমূহ"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "সম্পাদনা কর"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Server Choice"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL query"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "মোট"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Server Choice"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processes"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "সংযোগসমূহ"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL query"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Row Statistics"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "লোকাল"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Processes"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "ডাটাবেজ রিনেম কর"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "ডাটাবেজ রিনেম কর"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "ডাটাবেজ কপি করঃ"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Charset"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "একটি নতুন পাতা তৈরী কর"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "টেবিল ব্যাবহারকারী"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "খুঁজুন"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL query"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL query"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "ব্রাউজ করুন"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "%s মুছে ফেলা হচ্ছে"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL query"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL query"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "ইঞ্জিনসমূহ"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1271,77 +1313,77 @@ msgstr "সম্পাদনা কর"
msgid "Save"
msgstr "সেভ করুন"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL query"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL query"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "পাসওয়ার্ড তৈরী কর"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "তৈরী কর"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "পাসওয়ার্ড পরিবর্তন কর"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "সোমবার"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1349,128 +1391,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Server version"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "কোন ডাটাবেজ নাই"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "ডাটা"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "পূর্ববর্তী"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "পরবর্তী"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "মোট"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "বাইনারী"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "মার্চ"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "এপ্রিল"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "মে"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "জুন"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "জুলাই"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "আগস্ট"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "অক্টোবর"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "জানুয়ারী"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "ফেব্রুয়ারী"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "মার্চ"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "এপ্রিল"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1478,176 +1520,176 @@ msgid "May"
msgstr "মে"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "জুন"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "জুলাই"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "আগস্ট"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "সেপ্টেমবর"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "অক্টোবর"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "নভেম্বর"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "ডিসেম্বর"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "রবিবার"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "সোমবার"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "মঙ্গলবার"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "শুক্রবার"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "রবিবার"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "সোমবার"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "মঙ্গলবার"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "বুধবার"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "বৃহস্পতিবার"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "শুক্রবার"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "শনিবার"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "রবিবার"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "সোমবার"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "মঙ্গলবার"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "বুধবার"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "বৃহস্পতিবার"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "শুক্রবার"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "শনিবার"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1740,7 +1782,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "ডাটাবেজসমূহ Databases"
@@ -1811,25 +1853,25 @@ msgstr "MySQL সার্ভার এর জন্য %s বন্ধ কর
msgid "This MySQL server does not support the %s storage engine."
msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Invalid database"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Invalid table name"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error renaming table %1$s to %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Table %s has been renamed to %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1861,10 +1903,9 @@ msgstr "Theme %s not found!"
msgid "Theme path not found for theme %s!"
msgstr "Theme path not found for theme %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1872,7 +1913,6 @@ msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Welcome to %s"
@@ -2023,7 +2063,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "টেবিলসমূহ"
@@ -2112,7 +2152,6 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "সার্ভার"
@@ -2160,7 +2199,7 @@ msgid "Documentation"
msgstr "বর্ণনা"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL query"
@@ -2168,121 +2207,121 @@ msgstr "SQL query"
msgid "MySQL said: "
msgstr "MySQL said: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL ব্যাখ্যা কর"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP কোড ছাড়া"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP কোড তৈরী করুনCreate PHP Code"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Refresh"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "ইঞ্জিনসমূহ"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "বাইট"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "কিলোবাইট"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "মেগাবাইট"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "গিগাবাইট"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "টেরাবাইট"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "পেটাবাইট"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "এক্সাবাইট"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "শুরু"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "পূর্ববর্তী"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "End"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Jump to database "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2294,42 +2333,42 @@ msgstr ""
msgid "Structure"
msgstr "Structure"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Insert"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operations"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web server upload directory"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "The directory you set for upload work cannot be reached"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2689,7 +2728,7 @@ msgstr "ডাটাবেজ রিনেম কর"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4685,7 +4724,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privileges"
@@ -4697,7 +4736,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4910,9 +4949,9 @@ msgstr "ফাইল এর অক্ষরসমূহঃ"
msgid "Compression:"
msgstr "সংকোচন"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "কোনটিই নয়"
@@ -5061,39 +5100,57 @@ msgstr ""
msgid "Language"
msgstr "ভাষা"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Add/Delete Field Columns"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d is not valid row number."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "row(s) starting from record #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "আনুভূমিক"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (rotated headers)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "লম্ব"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "in %s mode and repeat headers after %s cells"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sort by key"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5106,103 +5163,103 @@ msgstr "Sort by key"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Operations"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Full Texts"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "সারিটি মুছে ফেলা হয়েছে"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "মোট"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Change"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Display PDF schema"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Server version"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "লিংক পাওয়া যায়নি"
@@ -5250,7 +5307,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -5737,7 +5794,7 @@ msgstr "Available MIME types"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "হোষ্ট"
@@ -5949,7 +6006,7 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Generated by"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6112,7 +6169,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "No change"
@@ -6442,14 +6499,14 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "চলক"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "মান"
@@ -6690,20 +6747,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "বাইনারী লগ"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "চলকসমূহ"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Charsets"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "ইঞ্জিনসমূহ"
@@ -6753,11 +6810,11 @@ msgstr "ক্যালেন্ডার"
msgid "Columns"
msgstr "কলামের নাম"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "এই SQL query টি বুকমার্ক করুন"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
@@ -6994,7 +7051,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "একটি নতুন ইউজার যোগ করুন"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "সময়"
@@ -7235,7 +7292,7 @@ msgid "Protocol version"
msgstr "Protocol version"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "User"
@@ -7516,7 +7573,7 @@ msgstr "তৈরী করুন"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "অপারেটর"
@@ -7708,18 +7765,18 @@ msgstr "The \"%s\" table doesn't exist!"
msgid "Select binary log to view"
msgstr "Select binary log to view"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "ক্ষেত্রসমূহ"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Show Full Queries"
@@ -8254,7 +8311,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Show slave status"
@@ -8395,205 +8452,193 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Thread %s was successfully killed."
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে"
-
-#: server_status.php:230
-msgid "Handler"
-msgstr "Handler"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Query cache"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Threads"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Temporary data"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Delayed inserts"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Key cache"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Joins"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "সাজাঁন"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Transaction coordinator"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Flush (close) all tables"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Show open tables"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Show slave hosts"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Show slave status"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Flush query cache"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Runtime Information"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Server Choice"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Row Statistics"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Refresh"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "per second"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "per second"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "in use"
+msgstr[1] "in use"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "per second"
+msgstr[1] "per second"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Thread %s was successfully killed."
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে"
+
+#: server_status.php:263
+msgid "Handler"
+msgstr "Handler"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Query cache"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Threads"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Temporary data"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Delayed inserts"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Key cache"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Joins"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "সাজাঁন"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Transaction coordinator"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Flush (close) all tables"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Show open tables"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Show slave hosts"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Show slave status"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Flush query cache"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Runtime Information"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Server Choice"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Do not change the password"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Show open tables"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per hour"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per minute"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per second"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Query type"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "This MySQL server has been running for %s. It started up on %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Replication"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Traffic"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8601,45 +8646,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "গৃহীত"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Sent"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "সংযোগসমূহ"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "বাদ দেওয়া হল"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processes"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "আইডি"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8649,16 +8690,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8670,109 +8711,109 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "How many temporary files mysqld has created."
-#: server_status.php:846
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: server_status.php:847
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: server_status.php:848
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: server_status.php:849
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: server_status.php:850
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: server_status.php:851
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: server_status.php:852
-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:853
-msgid ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-msgstr ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-
-#: server_status.php:854
-msgid ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-msgstr ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-
#: server_status.php:855
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
#: server_status.php:856
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."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
msgstr ""
-"The number of requests to read the next row in key order. This is "
-"incremented if you are querying an index column with a range constraint or "
-"if you are doing an index scan."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
#: server_status.php:857
msgid ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
msgstr ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"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:858
-msgid ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
#: server_status.php:859
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:860
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:861
+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:862
+msgid ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+msgstr ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+
+#: server_status.php:863
+msgid ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgstr ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+
+#: server_status.php:864
+msgid ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+msgstr ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+
+#: server_status.php:865
+msgid ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+msgstr ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+
+#: server_status.php:866
+msgid ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+msgstr ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+
+#: server_status.php:867
+msgid ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:868
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 "
@@ -8784,36 +8825,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "The number of free pages."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8823,7 +8864,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8835,11 +8876,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8847,7 +8888,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8855,11 +8896,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8867,7 +8908,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:874
+#: server_status.php:883
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 "
@@ -8881,55 +8922,55 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8937,35 +8978,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "The number of pages created."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8973,51 +9014,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "The number of pages read."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "The number of pages written."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "The number of rows read from InnoDB tables."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "The number of rows updated in InnoDB tables."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9025,7 +9066,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:907
+#: server_status.php:916
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."
@@ -9033,7 +9074,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:908
+#: server_status.php:917
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 "
@@ -9043,11 +9084,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9057,15 +9098,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9075,17 +9116,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9093,38 +9134,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9136,7 +9177,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9144,19 +9185,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9164,11 +9205,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9176,7 +9217,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9184,15 +9225,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9200,78 +9241,78 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:936
+#: server_status.php:945
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:937
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: server_status.php:938
-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:939
-msgid ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-msgstr ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-
-#: server_status.php:940
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: server_status.php:941
-msgid "The number of sorted rows."
-msgstr "The number of sorted rows."
-
-#: server_status.php:942
-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:943
-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:944
-msgid ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-
-#: server_status.php:945
-msgid ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-msgstr ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-
#: server_status.php:946
-msgid "The number of currently open connections."
-msgstr "The number of currently open connections."
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
#: server_status.php:947
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:948
+msgid ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+msgstr ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+
+#: server_status.php:949
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:950
+msgid "The number of sorted rows."
+msgstr "The number of sorted rows."
+
+#: server_status.php:951
+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:952
+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:953
+msgid ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:954
+msgid ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+msgstr ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+
+#: server_status.php:955
+msgid "The number of currently open connections."
+msgstr "The number of currently open connections."
+
+#: server_status.php:956
+msgid ""
"The number of threads created to handle connections. If Threads_created is "
"big, you may want to increase the thread_cache_size value. (Normally this "
"doesn't give a notable performance improvement if you have a good thread "
@@ -9282,7 +9323,7 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
@@ -9406,7 +9447,7 @@ msgstr "Server variables and settings"
msgid "Session value"
msgstr "Session value"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Global value"
@@ -9685,42 +9726,42 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
#, fuzzy
msgid "Showing SQL query"
msgstr "Show Full Queries"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "লেবেল"
@@ -10107,25 +10148,25 @@ msgstr ""
msgid "No rows selected"
msgstr "No rows selected"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Select fields (at least one):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Number of rows per page"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "ক্রম প্রদর্শন কর"
@@ -10424,8 +10465,12 @@ msgstr ""
msgid "Rename view to"
msgstr "টেবিল রিনেম করুন"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Theme / Style"
+
+#~ msgid "seconds"
+#~ msgstr "per second"
+
#~ msgid "Query results"
#~ msgstr "Query results operations"
@@ -10439,8 +10484,6 @@ msgstr "টেবিল রিনেম করুন"
#~ msgid "Show processes"
#~ msgstr "প্রসেসসমূহ দেখান"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "রিসেট করুন"
@@ -10459,31 +10502,20 @@ msgstr "টেবিল রিনেম করুন"
#~ "Query statistics : Since its startup, %s queries have been sent to "
#~ "the server."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "The privileges were reloaded successfully."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Query type"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "একটি নতুন ইউজার যোগ করুন"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Server version"
diff --git a/po/bs.po b/po/bs.po
index 98db44ccff..41903e9628 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među "
"prozorima zbog sigurnosnih podešavanja"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Pretraživanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "Pretraživanje"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Opis"
@@ -134,7 +134,7 @@ msgstr "Komentari tabele"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -149,7 +149,7 @@ msgstr "Imena kolona"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -165,7 +165,7 @@ msgstr "Tip"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "Komentari"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "Prikaži sadržaj (shemu) baze"
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Izaberi sve"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "ništa"
@@ -272,7 +272,7 @@ msgstr "Tabela %s je kopirana u %s."
msgid "Rename database to"
msgstr "Promjeni ime tabele u "
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Naredba"
@@ -337,7 +337,7 @@ msgstr "Pređi na kopiranu tabelu"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -367,7 +367,7 @@ msgstr "Relaciona shema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabela"
@@ -383,7 +383,7 @@ msgstr "Redova"
msgid "Size"
msgstr "Veličina"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "se koristi"
@@ -409,7 +409,7 @@ msgstr "Posljednja izmjena"
msgid "Last check"
msgstr "Posljednja provjera"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -430,25 +430,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sortiranje"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Rastući"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Opadajući"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Prikaži"
@@ -471,7 +471,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "ili"
@@ -504,39 +504,39 @@ msgstr "Koristi tabele"
msgid "SQL query on database %s :"
msgstr "SQL upit na bazi %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ulaz nije dozvoljen"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "bar jednu od riječi"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "sve riječi"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "tačan izraz"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "kao regularni izraz"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Rezultati pretrage za \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -544,20 +544,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s pogodaka unutar tabele %s "
msgstr[1] "%s pogodaka unutar tabele %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Pregled"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Prikaz podataka tabele"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -568,7 +568,7 @@ msgstr "Prikaz podataka tabele"
msgid "Delete"
msgstr "Obriši"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -576,173 +576,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "Ukupno: %s pogodaka"
msgstr[1] "Ukupno: %s pogodaka"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Pretraživanje baze"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Traži:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Riječi se odvajaju razmakom (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Unutar tabela:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Unutar tabela:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Tabele nisu pronađene u bazi."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s je ispražnjena"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Polje %s je obrisano"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s je odbačena"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "Relacije"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Ukupno"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "nijedno"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Za štampu"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Odbaci"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Provjeri tabelu"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimiziraj tabelu"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Popravi tabelu"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analiziraj tabelu"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Rečnik podataka"
@@ -757,9 +757,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Baza podataka"
@@ -776,8 +776,8 @@ msgstr "Napravi"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -917,7 +917,7 @@ msgstr "Obilježivač je upravo obrisan."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -940,7 +940,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -966,15 +966,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1072,178 +1072,220 @@ msgstr "Ukloni izabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Izbor servera"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL upit"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Ukupno"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Lokalni"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Procesi"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-msgid "Renaming Databases"
-msgstr "Promjeni ime tabele u "
-
-#: js/messages.php:92
-#, fuzzy
-msgid "Reload Database"
-msgstr "Promjeni ime tabele u "
-
-#: js/messages.php:93
-#, fuzzy
-msgid "Copying Database"
-msgstr "Baza ne postoji"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Karakter set"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Napravi novu stranu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Koristi tabele"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Pretraživanje"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL upit"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL upit"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Pregled"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Brišem %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL upit"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL upit"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Izbor servera"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL upit"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Ukupno"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Izbor servera"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesi"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Konekcije"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL upit"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Statistike reda"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Lokalni"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Procesi"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+msgid "Renaming Databases"
+msgstr "Promjeni ime tabele u "
+
+#: js/messages.php:105
+#, fuzzy
+msgid "Reload Database"
+msgstr "Promjeni ime tabele u "
+
+#: js/messages.php:106
+#, fuzzy
+msgid "Copying Database"
+msgstr "Baza ne postoji"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Karakter set"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Napravi novu stranu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Koristi tabele"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Pretraživanje"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL upit"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL upit"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Pregled"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Brišem %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL upit"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL upit"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1251,78 +1293,78 @@ msgstr "Promeni"
msgid "Save"
msgstr "Sačuvaj"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Promeni lozinku"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Generirao"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1330,128 +1372,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Baza ne postoji"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "nema"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodna"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Slijedeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "maj"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1459,176 +1501,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "dec"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1720,7 +1762,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Baze"
@@ -1785,25 +1827,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabeli %s promjenjeno ime u %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1835,9 +1877,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1846,7 +1887,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Dobrodošli na %s"
@@ -1994,7 +2034,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabele"
@@ -2079,7 +2119,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2127,7 +2166,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL upit"
@@ -2135,119 +2174,119 @@ msgstr "SQL upit"
msgid "MySQL said: "
msgstr "MySQL kaže: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Preskoči objašnjavanje SQL-a"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Preskoči provjeru SQL-a"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Provjeri SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "bajta"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Početak"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Prethodna"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Kraj"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Pređi na bazu "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2259,42 +2298,42 @@ msgstr ""
msgid "Structure"
msgstr "Struktura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Novi zapis"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacije"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "direkcija za slanje web servera "
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direkcija koju ste izabrali za slanje nije dostupna"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2651,7 +2690,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4617,7 +4656,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegije"
@@ -4629,7 +4668,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4832,9 +4871,9 @@ msgstr "Karakter set datoteke:"
msgid "Compression:"
msgstr "Kompresija"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "nema"
@@ -4969,39 +5008,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Dodaj/obriši kolonu"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr " redova počev od reda"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontalnom"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontalnom (rotirana zaglavlja)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikalnom"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "u %s modu i ponovi zaglavlje posle svakog %s reda"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5014,103 +5071,103 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Operacije"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Dio teksta"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Pun tekst"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Tranformacije čitača"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Promijeni"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Verzija servera"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -5156,7 +5213,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -5621,7 +5678,7 @@ msgstr "Dostupni MIME-tipovi"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5829,7 +5886,7 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generirao"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
@@ -5989,7 +6046,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Dodaj novo polje"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Nema izmjena"
@@ -6321,14 +6378,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Promjenljiva"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Vrijednost"
@@ -6569,21 +6626,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr "Binarni"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Promjenljive"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Kodne strane"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6632,11 +6689,11 @@ msgstr ""
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Obilježi SQL-upit"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6871,7 +6928,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Dodaj novog korisnika"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Vrijeme"
@@ -7080,7 +7137,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Korisnik"
@@ -7351,7 +7408,7 @@ msgstr "Napravi"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "Operacije"
@@ -7540,18 +7597,18 @@ msgstr "Tabela \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Polja"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Prikaži skraćene upite"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Prikaži kompletne upite"
@@ -8084,7 +8141,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8223,265 +8280,249 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+msgid "Refresh rate"
+msgstr "Generirao"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "se koristi"
+msgstr[1] "se koristi"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "u sekundi"
+msgstr[1] "u sekundi"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Proces %s je uspješno prekinut."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Vrsta upita"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Prošireni INSERT"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Prikaži tabele"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informacije o toku rada"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Izbor servera"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Statistike reda"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-msgid "Refresh rate"
-msgstr "Generirao"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "u sekundi"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "u sekundi"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "se koristi"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemoj da mijenjaš lozinku"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Prikaži tabele"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "na sat"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "u minuti"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "u sekundi"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Vrsta upita"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Saobraćaj"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Poslato"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Konekcije"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Neuspelih pokušaja"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesi"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8489,78 +8530,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8568,7 +8609,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8576,42 +8617,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8619,33 +8660,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8654,227 +8695,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8882,99 +8923,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8982,18 +9023,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9001,7 +9042,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9124,7 +9165,7 @@ msgstr "Serverske promenljive i podešavanja"
msgid "Session value"
msgstr "Vrijednost sesije"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globalna vrednost"
@@ -9402,41 +9443,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pregledaj strane vrijednosti"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Provjeri SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Naziv"
@@ -9819,25 +9860,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Izaberi polja (najmanje jedno)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Broj redova po strani"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Redosled prikaza:"
@@ -10136,6 +10177,11 @@ msgstr ""
msgid "Rename view to"
msgstr "Promjeni ime tabele u "
+#, fuzzy
+#~| msgid "per second"
+#~ msgid "seconds"
+#~ msgstr "u sekundi"
+
#, fuzzy
#~| msgid "SQL result"
#~ msgid "Query results"
diff --git a/po/ca.po b/po/ca.po
index 4c4f611888..e0f828cc28 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro \n"
"Language-Team: catalan \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Mostra tot"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre "
"finestres per la teva configuració de seguretat."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Cerca"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Cerca"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Nom de clau"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Descripció"
@@ -137,7 +137,7 @@ msgstr "Comentaris de la taula"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Columna"
@@ -150,7 +150,7 @@ msgstr "Columna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipus"
@@ -166,7 +166,7 @@ msgstr "Tipus"
msgid "Null"
msgstr "Nul"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Enllaços a"
msgid "Comments"
msgstr "Comentaris"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Comentaris"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "No"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Veure el bolcat (esquema) de la base de dades"
msgid "No tables found in database."
msgstr "Base de dades sense taules."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Tria Tot"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Desmarca tot"
@@ -271,7 +271,7 @@ msgstr "La base de dades %s s'ha copiat a %s"
msgid "Rename database to"
msgstr "Reanomena base de dades a"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Ordre"
@@ -332,7 +332,7 @@ msgstr "Canvia a la base de dades copiada"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Edita o exporta l'esquema relacional"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Taula"
@@ -373,7 +373,7 @@ msgstr "Fila"
msgid "Size"
msgstr "Mida"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "en ús"
@@ -399,7 +399,7 @@ msgstr "Darrera actualització"
msgid "Last check"
msgstr "Darrera comprovació"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "constructor visual"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Classificació"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ascendent"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descendent"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostra"
@@ -460,7 +460,7 @@ msgstr "Sup"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "O"
@@ -489,58 +489,58 @@ msgstr "Usa Taules"
msgid "SQL query on database %s :"
msgstr "Consulta SQL a la base de dades %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Executa consulta"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Accés denegat"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "al menys una d'aquestes paraules"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "totes les paraules"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "la frase exacta"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "com a expressió regular"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Resultats de la recerca per a \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s resultat a la taula %s "
msgstr[1] "%s resultats a la taula %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Navega"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Esborrar les coincidències per a la taula %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,65 +551,65 @@ msgstr "Esborrar les coincidències per a la taula %s?"
msgid "Delete"
msgstr "Esborra"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Total: %s resultat"
msgstr[1] "Total: %s resultats"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Cerca a la base de dades"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Paraula(es) o valor(s) a cercar (comodí: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Trobat:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Paraules separades per un espai (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Dins la/les taula(es):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Dins la columna:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Base de dades sense taules"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "S'ha buidat la taula %s"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Vista %s esborrada"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "S'ha esborrat la taula %s"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "El seguiment està actiu."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "El seguiment no està actiu."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -617,112 +617,112 @@ msgid ""
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vista"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replicació"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Suma"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Amb marca:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Marcar-ho tot"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desmarcar tot"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Comprova taules desfragmentades"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporta"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Imprimeix vista"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Buida"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Verifica la taula"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimitza la taula"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Repara la taula"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analitza la taula"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Vés a la taula"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Canviar les dades de la taula per l'arxiu "
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Canviar les dades de la taula per l'arxiu "
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Diccionari de Dades"
@@ -737,9 +737,9 @@ msgstr "Taules seguides"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Base de dades"
@@ -755,8 +755,8 @@ msgstr "Creat"
msgid "Updated"
msgstr "Actualitzat"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Estat"
@@ -900,7 +900,7 @@ msgstr "S'ha esborrat la consulta desada."
msgid "Showing bookmark"
msgstr "Mostrant consultes desades"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "%s creat com a Consulta desada"
@@ -928,7 +928,7 @@ msgstr ""
"incrementeu els límits de temps de php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -955,15 +955,15 @@ msgstr "Clica per seleccionar"
msgid "Click to unselect"
msgstr "Clica per deseleccionar"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Instrucció \"DROP DATABASE\" desactivada."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Realment vols fer?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Ets a punt de DESTRUIR completament una base de dades!"
@@ -1061,166 +1061,208 @@ msgstr "Treu els usuaris triats"
msgid "Close"
msgstr "Tanca"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Elecció de Servidor"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Mostrar gràfic de consultes"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Carregar"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Petició de procés"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Error a la petició de procés"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Eliminació de columna"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Afegir clau principal"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Reanomenar bases de dades"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Recarregar base de dades"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Copiant base de dades"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Canvi de Joc de Caràcters"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "La taula ha de tenir al menys una columna"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Crea una taula"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Usa Taules"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Cercar"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Amaga el criteri de cerca"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Mostrar criteri de cerca"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Navega"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Esborrant %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Amagar quadre de consultes"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Mostrar quadre de consultes"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Edició en linia"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Elecció de Servidor"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query chart"
+msgid "Live query chart"
+msgstr "Mostrar gràfic de consultes"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Elecció de Servidor"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processos"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Connexions"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Consultes SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Consulta d'estadístiques"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Carregar"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Petició de procés"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Error a la petició de procés"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Eliminació de columna"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Afegir clau principal"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Reanomenar bases de dades"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Recarregar base de dades"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Copiant base de dades"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Canvi de Joc de Caràcters"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "La taula ha de tenir al menys una columna"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Crea una taula"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Usa Taules"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Cercar"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Amaga el criteri de cerca"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "Mostrar criteri de cerca"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Navega"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Esborrant %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Amagar quadre de consultes"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Mostrar quadre de consultes"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Edició en linia"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1228,67 +1270,67 @@ msgstr "Edita"
msgid "Save"
msgstr "Desa"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Amaga"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Amaga el criteri de cerca"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Mostrar criteri de cerca"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Tria la clau referenciada"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Tria una clau externa"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Tria la clau principal o una clau única"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Tria la columna a mostrar"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Afegeix una opció per a la columna"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Genera una contrasenya"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Canvi de contrasenya"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Més"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1298,260 +1340,260 @@ msgstr ""
"actualitzar-la. La nova versió és la %s, alliberada el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", darrera versió estable:"
-#: js/messages.php:150
+#: js/messages.php:163
#, 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:168
+#: js/messages.php:181
msgid "Done"
msgstr "Fet"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Següent"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Avui"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Gener"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Febrer"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Març"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Abril"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Maig"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Juny"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Juliol"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Agost"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Setembre"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Octubre"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Novembre"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Desembre"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Des"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Diumenge"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Dilluns"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Dimarts"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Dimecres"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Dijous"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Divendres"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Dissabte"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Dis"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Dg"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Dl"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Dm"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Dc"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Dj"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Dv"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Ds"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Se"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Segon"
@@ -1647,7 +1689,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Bases de dades"
@@ -1719,25 +1761,25 @@ msgstr "%s s'ha desactivat en aquest servidor MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Base de dades incorrecte"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Nom de taula incorrecte"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error reanomenant la taula %1$s a %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "La taula %s ha canviat de nom a %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1769,10 +1811,9 @@ msgstr "Tema %s no trobat!"
msgid "Theme path not found for theme %s!"
msgstr "No s'ha trobat el camí de les imatges del tema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Estil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1780,7 +1821,6 @@ msgstr "No puc connectar: paràmetres incorrectes."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
@@ -1934,7 +1974,7 @@ msgstr "compartit"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Taules"
@@ -2019,7 +2059,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Servidor"
@@ -2067,7 +2106,7 @@ msgid "Documentation"
msgstr "Documentació"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Consulta SQL"
@@ -2075,119 +2114,119 @@ msgstr "Consulta SQL"
msgid "MySQL said: "
msgstr "MySQL diu: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "No es pot connectar al validador SQL!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Explica SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Salta l'explicació de l'SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Sense codi PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Crea codi PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Refresca"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Salta la Validació de l'SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Valida l'SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Editar aquesta consulta en línia"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "En línia"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Perfils"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a les %H:%M:%S"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dies, %s hores, %s minuts i %s segons"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Inici"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Final"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Vés a la base de dades "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2199,42 +2238,42 @@ msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s"
msgid "Structure"
msgstr "Estructura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Insereix"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacions"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Navega al teu ordinador:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
"Selecciona des del directori de pujada d'arxius del servidor web %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "No està disponible el directori indicat per pujar arxius"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "No hi ha cap arxiu per pujar"
@@ -2596,7 +2635,7 @@ msgstr "Pestanya de taula predeterminada"
msgid "Show binary contents as HEX by default"
msgstr "Mostra el contingut binari com HEX per defecte"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Mostra el contingut binari com HEX"
@@ -4666,7 +4705,7 @@ msgstr "Dissenyador"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Permisos"
@@ -4678,7 +4717,7 @@ msgstr "Rutines"
msgid "Return type"
msgstr "Tipus de retorn"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4867,9 +4906,9 @@ msgstr "Joc de caràcters de l'arxiu:"
msgid "Compression:"
msgstr "Compressió:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Res"
@@ -5002,37 +5041,57 @@ msgstr "Opcions específiques de format:"
msgid "Language"
msgstr "Idioma"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "Columnes per a textareas"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Clica per seleccionar"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d no és un num. vàlid de fila."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "fila(es) començant des de la fila #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horitzontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horitzontal (capçaleres rotades)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "en mode %s i repeteix capçaleres després de %s cel·les "
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Classifica per la clau"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5045,92 +5104,92 @@ msgstr "Classifica per la clau"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opcions"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Textos parcials"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Textos sencers"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Clau relacional"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Columna relacional a mostrar"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Mostra continguts binaris"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Mostra contingut BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformació del navegador"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Còpia"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "S'ha esborrat la fila"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Finalitzar"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "en consulta"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Mostrant registres"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tarda %01.4f seg"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Canvi"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operacions de resultats de consultes"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Vista d'impresió (amb texts sencers)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Mostra el gràfic"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Crea una vista"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "No s'ha trobat l'enllaç "
@@ -5179,7 +5238,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Grup de memòries intermitges"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Estat InnoDB"
@@ -5686,7 +5745,7 @@ msgstr "Mostra tipus MIME"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Servidor"
@@ -5910,7 +5969,7 @@ msgstr "Resultat SQL"
msgid "Generated by"
msgstr "Generat per"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6078,7 +6137,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Afegir índex"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Sense canvis"
@@ -6413,14 +6472,14 @@ msgid "Slave status"
msgstr "Estat de l'esclau"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valor"
@@ -6648,20 +6707,20 @@ msgid "Synchronize"
msgstr "Sincronitza"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Registre binari"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variables"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Jocs de caràcters"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motors"
@@ -6706,11 +6765,11 @@ msgstr "Neteja"
msgid "Columns"
msgstr "Columnes"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Desa aquesta consulta SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
@@ -6937,7 +6996,7 @@ msgstr "Definició de PARTICIÓ"
msgid "+ Add a new value"
msgstr "+ Afegir un nou valor"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Temps"
@@ -7136,7 +7195,7 @@ msgid "Protocol version"
msgstr "Versió del protocol"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Usuari"
@@ -7409,7 +7468,7 @@ msgstr "Agrega"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operador"
@@ -7586,17 +7645,17 @@ msgstr "L'arxiu no existeix"
msgid "Select binary log to view"
msgstr "Tria el registre binari per veure"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Arxius"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Talla les consultes mostrades"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Mostra Consultes completes"
@@ -8126,7 +8185,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Mostra l'estat del mestre -show master status-"
@@ -8275,177 +8334,166 @@ msgstr ""
"Aquest servidor no està configurat com a esclau en un procés de replicació. "
"Vols configurar-lo ?"
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Fil %s cancel.lat correctament."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Gestor"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Memòria cau de consultes"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Fils"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Dades temporals"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Insercions demorades"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Memòria cau de claus"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Unions"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Classificant"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Coordinador de transaccions"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Sincronitza (tanca) totes les taules"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Mostra taules obertes"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Mostra servidors esclaus"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Mostra l'estat d'esclaus"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Buida la memòria cau de consultes"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Informació d'execució"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Elecció de Servidor"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Consulta d'estadístiques"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
-msgid "All status variables"
-msgstr "Veure la taula d'estat de l'esclau"
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Refresca"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Segon"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Segon"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "Minut"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minut"
+msgstr[1] "Minut"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Segon"
+msgstr[1] "Segon"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Fil %s cancel.lat correctament."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Gestor"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Memòria cau de consultes"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Fils"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Dades temporals"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Insercions demorades"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Memòria cau de claus"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Unions"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Classificant"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Coordinador de transaccions"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Sincronitza (tanca) totes les taules"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Mostra taules obertes"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Mostra servidors esclaus"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Mostra l'estat d'esclaus"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Buida la memòria cau de consultes"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Informació d'execució"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Elecció de Servidor"
+
+#: server_status.php:402
+#, fuzzy
+#| msgid "See slave status table"
+msgid "All status variables"
+msgstr "Veure la taula d'estat de l'esclau"
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "No canviïs la contrasenya"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Mostra taules obertes"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Enllaços relacionats"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per hora"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per minut"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per segon"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tipus de consulta"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8453,35 +8501,35 @@ msgstr ""
"Aquest servidor MySQL treballa com a mestre i esclau en un "
"procés de replicació ."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
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:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Per obtenir més informació sobre l'estat de replicació al servidor, visita "
-"la secció de replicació ."
+"la secció de replicació ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Estat de la replicació"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Tràfic"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8489,45 +8537,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Rebut"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Enviat"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Connexions"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. connexions a la vegada"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Intents erronis"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Avortat"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processos"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8537,17 +8581,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8559,11 +8603,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Arxius temporals creats per mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8571,7 +8615,7 @@ msgstr ""
"El nombre de taules temporals creades en memòria per el servidor mentre "
"executa instruccions."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8579,7 +8623,7 @@ msgstr ""
"El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat "
"quelcom error (possile clau duplicada)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8587,23 +8631,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "El nombre de files escrites amb INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "El nombre d'instruccions FLUSH executades."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "El nombre d'instruccions COMMIT internes."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8613,7 +8657,7 @@ msgstr ""
"coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. "
"Handler_discover indica el nombre de taules descobertes."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8623,7 +8667,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:855
+#: server_status.php:864
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."
@@ -8632,7 +8676,7 @@ msgstr ""
"és una bona indicació de que les consultes i taules estàn indexades "
"acuradament."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8642,7 +8686,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8651,7 +8695,7 @@ msgstr ""
"Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... "
"DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8663,7 +8707,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:859
+#: server_status.php:868
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 "
@@ -8675,37 +8719,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "El nombre d'instruccions ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "El nombre de pàgines contenint dades (brutes o netes)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "El nombre de pàgines actualment brutes."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "El nombre de pàgines lliures."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8715,7 +8759,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:868
+#: server_status.php:877
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 "
@@ -8727,11 +8771,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Tamany total de la memòria cau, en pàgines."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8739,7 +8783,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8747,11 +8791,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:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8759,7 +8803,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:874
+#: server_status.php:883
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 "
@@ -8773,55 +8817,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:875
+#: server_status.php:884
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:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "El nombre d'operacions fsync() aproximades."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "El nombre actual d'operacions fsync() pendents."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "El nombre actual de lectures pendents."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "El nombre actual d'escritures pendents."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "La quantitat aproximada de dades llegides, en bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "El nombre total de dades llegides."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "El nombre total de dades escrites."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "La quantitat aproximada de dades escrites, en bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8829,35 +8873,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "El nombre de peticions d'escriptura al registre."
-#: server_status.php:888
+#: server_status.php:897
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:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Escriptures pendents a l'arxiu de registre."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "El nombre de bytes escrits a l'arxiu de registre."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "El nombre de pàgines creades."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8866,51 +8910,51 @@ msgstr ""
"comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment "
"a bytes."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "El nombre de pàgines llegides."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "El nombre de pàgines escrites."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "El nombre de bloquejos de files actualment en espera."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "El nombre de files esborrades de taules InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "El nombre de files afegides a taules InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "El nombre de files llegides de taules InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "El nombre de files actualitzades en taules InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8919,7 +8963,7 @@ msgstr ""
"però que encara no han estat actualitzades a disc. Es coneix com a "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8927,7 +8971,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:908
+#: server_status.php:917
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 "
@@ -8936,11 +8980,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8950,16 +8994,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8970,17 +9014,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8988,39 +9032,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "El nombre d'arxius que estàn oberts."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "El nombre de taules que estàn obertes."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
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:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "El nombre d'encerts a memòria cau."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "El nombre de consultes afegides a la memòria cau."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9033,7 +9077,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9041,19 +9085,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "El nombre de consultes registrades a la memòria cau."
-#: server_status.php:927
+#: server_status.php:936
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:928
+#: server_status.php:937
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:929
+#: server_status.php:938
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."
@@ -9061,12 +9105,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9075,7 +9119,7 @@ msgstr ""
"cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els "
"indexs de les taules.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9083,16 +9127,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9100,25 +9144,25 @@ msgstr ""
"Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació "
"de SQL ha recuperat transaccions."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9128,23 +9172,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "El nombre de classificacions fetes amb rangs."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "El nombre de files classificades."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "El nombre de classificacions fetes cercant la taula."
-#: server_status.php:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9157,7 +9201,7 @@ msgstr ""
"consultes, o també dividir la taula o taules en vàries o bé utilitzar la "
"replicació."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9167,11 +9211,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "El nombre de connexions obertes simultàniament."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9182,7 +9226,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "El nombre de fils que no estàn dormint."
@@ -9308,7 +9352,7 @@ msgstr "Variables i configuracions del servidor"
msgid "Session value"
msgstr "Valor de sessió"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valor global"
@@ -9633,39 +9677,39 @@ msgstr "La clau és massa curta, ha de tenir al menys 8 caràcters."
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Navega valors externs"
-#: sql.php:170
+#: sql.php:181
#, 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:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id de la fila inserida: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Mostrant com a codi PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Mostrant consulta SQL"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "SQL validat"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemes amb els indexs de la taula `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiqueta"
@@ -10047,23 +10091,23 @@ msgstr "Límit de clau externa"
msgid "No rows selected"
msgstr "No s'han triat arxius"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Tria les columnes (una com a mínim):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Afegeix condicions de recerca (cos de la clàusula \"where\" ):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Número de registres per pàgina"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Ordre del llistat:"
@@ -10353,6 +10397,12 @@ msgstr "Nom de VISTA"
msgid "Rename view to"
msgstr "Reanomena la vista a"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Estil"
+
+#~ msgid "seconds"
+#~ msgstr "Segon"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Comparació del temps d'execució de consultes (en microsegons)"
diff --git a/po/cs.po b/po/cs.po
index fc8141d7bc..39cacbc160 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,8 +6,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-07 13:35+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-17 15:05+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
"Language: cs\n"
@@ -18,12 +18,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Zobrazit vše"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -41,23 +41,23 @@ msgstr ""
"rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu "
"bezpečnostních nastavení."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Vyhledávání"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -74,7 +74,7 @@ msgstr "Vyhledávání"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -87,7 +87,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:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Popis"
@@ -139,7 +139,7 @@ msgstr "Komentář k tabulce"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Pole"
@@ -152,7 +152,7 @@ msgstr "Pole"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -168,7 +168,7 @@ msgstr "Typ"
msgid "Null"
msgstr "Nulový"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -197,7 +197,7 @@ msgstr "Odkazuje na"
msgid "Comments"
msgstr "Komentáře"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -208,12 +208,12 @@ msgstr "Komentáře"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -228,7 +228,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -240,18 +240,18 @@ msgstr "Vytisknout"
#: db_export.php:30
msgid "View dump (schema) of database"
-msgstr "Export databáze"
+msgstr "Zobrazit výpis (schéma) databáze"
#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
#: export.php:371 navigation.php:323
msgid "No tables found in database."
msgstr "V databázi nebyla nalezena žádná tabulka."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Vybrat vše"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Odznačit vše"
@@ -273,7 +273,7 @@ msgstr "Databáze %s byla zkopírována na %s"
msgid "Rename database to"
msgstr "Přejmenovat databázi na"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Příkaz"
@@ -334,7 +334,7 @@ msgstr "Přepnout na zkopírovanou databázi"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -359,7 +359,7 @@ msgstr "Upravit nebo exportovat relační schéma"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabulka"
@@ -375,7 +375,7 @@ msgstr "Řádků"
msgid "Size"
msgstr "Velikost"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "právě se používá"
@@ -401,7 +401,7 @@ msgstr "Poslední změna"
msgid "Last check"
msgstr "Poslední kontrola"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -422,25 +422,25 @@ msgid "visual builder"
msgstr "vizuálního návrháře"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Řadit"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Vzestupně"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Sestupně"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Zobrazit"
@@ -463,7 +463,7 @@ msgstr "smazat"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "nebo"
@@ -492,39 +492,39 @@ msgstr "Použít tabulky"
msgid "SQL query on database %s :"
msgstr "SQL dotaz na databázi %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Provést dotaz"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Přístup odepřen"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "alespoň jedno ze slov"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "všechna slova"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "přesnou frázi"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "jako regulární výraz"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Výsledky vyhledávání pro „%s “ %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
@@ -532,19 +532,19 @@ msgstr[0] "%s odpovídající záznam v tabulce %s "
msgstr[1] "%s odpovídající záznamy v tabulce %s "
msgstr[2] "%s odpovídajících záznamů v tabulce %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Projít"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Odstranit nalezené záznamy z tabulky %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -555,7 +555,7 @@ msgstr "Odstranit nalezené záznamy z tabulky %s?"
msgid "Delete"
msgstr "Odstranit"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -563,58 +563,58 @@ msgstr[0] "Celkem: %s odpovídající záznam"
msgstr[1] "Celkem: %s odpovídající záznamy"
msgstr[2] "Celkem: %s odpovídajících záznamů"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Vyhledávání v databázi"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Najít:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Slova jsou oddělena mezerou („ “)."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "V tabulkách:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Uvnitř pole:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "V databázi nebyly nalezeny žádné tabulky"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabulka %s byla vyprázdněna"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Pohled %s byl odstraněn"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabulka %s byla odstraněna"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Sledování je zapnuté."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Sledování není zapnuté."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -622,106 +622,106 @@ msgid ""
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Pohled"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikace"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Celkem"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je výchozí úložiště na tomto MySQL serveru."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Zaškrtnuté:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Zaškrtnout vše"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Odškrtnout vše"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Zaškrtnout neoptimální"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Náhled pro tisk"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Vyprázdnit"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Odstranit"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Zkontrolovat tabulku"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimalizovat tabulku"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Opravit tabulku"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyzovat tabulku"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Přidat tabulce předponu"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Změnit tabulce předponu"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Zkopírovat tabulku s předponou"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datový slovník"
@@ -736,9 +736,9 @@ msgstr "Sledované tabulky"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Databáze"
@@ -754,8 +754,8 @@ msgstr "Vytvořeno"
msgid "Updated"
msgstr "Aktualizováno"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Stav"
@@ -899,7 +899,7 @@ msgstr "Položka byla smazána z oblíbených."
msgid "Showing bookmark"
msgstr "Zobrazuji oblíbený dotaz"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Vytvořen oblíbený dotaz %s"
@@ -927,7 +927,7 @@ msgstr ""
"časové limity v PHP."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -953,15 +953,15 @@ msgstr "Klikněte pro vybrání"
msgid "Click to unselect"
msgstr "Klikněte pro zrušení výběru"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Příkaz „DROP DATABASE“ je vypnutý."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Opravdu si přejete vykonat příkaz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte se ZRUŠIT celou databázi!"
@@ -1012,10 +1012,8 @@ msgstr "Nebylo zadáno číslo!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Počet souborů s logy"
+msgstr "Celkový počet"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1051,156 +1049,188 @@ msgstr "Odstraňuji vybrané uživatele"
msgid "Close"
msgstr "Ukončit"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Server"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Zobrazit graf dotazu"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Celkem"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Nahrávám"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Probíhá zpracování požadavku"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Chyba při zpracování požadavku"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Odstraňuji sloupec"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Přidávám primární klíč"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Přejmenovávám databáze"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Znovu načítám databázi"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Kopíruji databázi"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Měním znakovou sadu"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Tabulka musí mít alespoň jedno pole"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Vytvořit tabulku"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Vložit tabulku"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Vyhledávám"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Skrýt výsledky vyhledávání"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Zobrazit výsledky vyhledávání"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Procházím"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Odstraňuji"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "Skrýt pole pro dotaz"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Zobrazit pole pro dotaz"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Upravit zde"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upravit"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Živý graf provozu"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Živý graf připojení a procesů"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Živý graf dotazů"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Statická data"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Celkem"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Ostatní"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr "Odesláno KiB od posledního obnovení"
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr "Přijato KiB od posledního obnovení"
+
+#: js/messages.php:82
+msgid "Server traffic (in KiB)"
+msgstr "Síťový provoz (v KiB)"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr "Spojení od posledního obnovaní"
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesy"
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr "Připojení / Procesů"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr "Provedených dotazů od posledního obnovení"
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr "Provedené dotazy"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statistika dotazů"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Nahrávám"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Probíhá zpracování požadavku"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Chyba při zpracování požadavku"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Odstraňuji sloupec"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Přidávám primární klíč"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Přejmenovávám databáze"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Znovu načítám databázi"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopíruji databázi"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Měním znakovou sadu"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabulka musí mít alespoň jedno pole"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Vytvořit tabulku"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Vložit tabulku"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Vyhledávám"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Skrýt výsledky vyhledávání"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Zobrazit výsledky vyhledávání"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Procházím"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Odstraňuji"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Skrýt pole pro dotaz"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Zobrazit pole pro dotaz"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Upravit zde"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1208,41 +1238,41 @@ msgstr "Upravit"
msgid "Save"
msgstr "Uložit"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skrýt"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Skrýt parametry vyhledávání"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Zobrazit parametry vyhledávání"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorovat"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Zvolte odkazovaný klíč"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Zvolte cizí klíč"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Zvolte, prosím, primární nebo unikátní klíč"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Zvolte která pole zobrazit"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1250,27 +1280,27 @@ msgstr ""
"Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. "
"Přejete si pokračovat?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Přidat paramer pro sloupec "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Vytvořit heslo"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Vytvořit"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Změnit heslo"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Více"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1280,258 +1310,258 @@ msgstr ""
"je %s a byla vydána %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", poslední stabilní verze:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "aktuální"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Hotovo"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Předchozí"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Další"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Dnešek"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "leden"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "únor"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "březen"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "duben"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "květen"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "červen"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "červenec"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "srpen"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "září"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "říjen"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "listopad"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "prosinec"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "led"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "úno"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "bře"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "dub"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "kvě"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "čen"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "čec"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "srp"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "zář"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "říj"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "lis"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "pro"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Neděle"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Pondělí"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Úterý"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Středa"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Čtvrtek"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Pátek"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Úte"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Stř"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Čtv"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pát"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Čt"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Pá"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Týd"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuty"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekundy"
@@ -1627,7 +1657,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databáze"
@@ -1694,25 +1724,25 @@ msgstr "Úložiště %s je vypnuté na tomto MySQL serveru."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Tento MySQL server nepodporuje úložiště %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Chybná databáze"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Chybné jméno tabulky"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Chyba při přejmenování tabulky %1$s na %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabulka %s byla přejmenována na %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Nepodařilo se uložit nastavení prohlížení tabulky"
@@ -1744,9 +1774,8 @@ msgstr "Vzhled %s nebyl nalezen!"
msgid "Theme path not found for theme %s!"
msgstr "Nebyla nalezena platná cesta k vzhledu %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr "Vzhled"
#: libraries/auth/config.auth.lib.php:76
@@ -1755,7 +1784,6 @@ msgstr "Nepodařilo se připojit: chybné nastavení."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Vítejte v %s"
@@ -1795,7 +1823,7 @@ msgstr "Dokumentace phpMyAdmina"
#: libraries/auth/cookie.auth.lib.php:243
#: libraries/auth/cookie.auth.lib.php:244
msgid "You can enter hostname/IP address and port separated by space."
-msgstr "Můžete zadat jméno počítače (nebo IP adresu) a port oddělené mezerou."
+msgstr "Můžete zadat jméno počítače nebo IP adresu a port oddělené mezerou."
#: libraries/auth/cookie.auth.lib.php:243
msgid "Server:"
@@ -1828,7 +1856,7 @@ msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPasswor
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-"Byli jste příliš dlouho neaktivní (déle než %s sekund), prosím přihlaste se "
+"Nebyla zaznamenána žádná aktivita po dobu %s sekund, prosím přihlaste se "
"znovu"
#: libraries/auth/cookie.auth.lib.php:657
@@ -1906,7 +1934,7 @@ msgstr "sdílený"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabulky"
@@ -1990,7 +2018,6 @@ msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení.
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2038,7 +2065,7 @@ msgid "Documentation"
msgstr "Dokumentace"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-dotaz"
@@ -2046,119 +2073,119 @@ msgstr "SQL-dotaz"
msgid "MySQL said: "
msgstr "MySQL hlásí: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Vysvětlit SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
-msgstr "Bez vysvětlení (EXPLAIN) SQL"
+msgstr "Bez vysvětlení SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Bez PHP kódu"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Vytvořit PHP kód"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Obnovit"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Bez kontroly SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Zkontrolovat SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Upravit tento dotaz na této stránce"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Upravit zde"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilování"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d. %b %Y, %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dnů, %s hodin, %s minut a %s sekund"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Začátek"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Předchozí"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Konec"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Přejít na databázi „%s“."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkčnost %s je omezena známou chybou, viz %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2170,41 +2197,41 @@ msgstr "Funkčnost %s je omezena známou chybou, viz %s"
msgid "Structure"
msgstr "Struktura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Vložit"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Úpravy"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Procházet váš počítač:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Zvolte soubor z adresáře pro upload na serveru %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Adresář určený pro upload souborů nemohl být otevřen"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Nebyl zvolen žádný soubor pro nahrání"
@@ -2417,12 +2444,12 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
-"Tajné heslo (fráze) používané pro šifrování cookies při přihlašování pomocí "
-"[kbd]cookie[/kbd]"
+"Tajné heslo používané pro šifrování cookies při přihlašování pomocí [kbd]"
+"cookie[/kbd]"
#: libraries/config/messages.inc.php:25
msgid "Blowfish secret"
-msgstr "Klíč pro šifrování cookies (blowfish_secret)"
+msgstr "Klíč pro šifrování cookies"
#: libraries/config/messages.inc.php:26
msgid "Highlight selected rows"
@@ -2564,7 +2591,7 @@ msgstr "Výchozí panel tabulky"
msgid "Show binary contents as HEX by default"
msgstr "Zobrazení binárního obsah šestnáctkově (HEX) jako výchozí"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Zobrazit binární obsah šestnáctkově (HEX)"
@@ -2625,8 +2652,8 @@ msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
msgstr ""
-"Zadejte počet sekund, po které může skript běžet, nebo ([kbd]0[/kbd] pro "
-"žádná omezení"
+"Zadejte počet sekund, po které může skript běžet ([kbd]0[/kbd] pro žádná "
+"omezení)"
#: libraries/config/messages.inc.php:69
msgid "Maximum execution time"
@@ -3557,7 +3584,7 @@ msgstr "Výchozí pořadí řazení"
#: libraries/config/messages.inc.php:329
msgid "Use persistent connections to MySQL databases"
-msgstr "Použije trvalé (persistentní) připojení k MySQL databázi"
+msgstr "Použije trvalé připojení k MySQL databázi"
#: libraries/config/messages.inc.php:330
msgid "Persistent connections"
@@ -3763,7 +3790,8 @@ msgstr "Komprimovat připojení"
#: libraries/config/messages.inc.php:377
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
-msgstr "Jak se připojit k serveru, ponechte tcp pokud si nejste jistí"
+msgstr ""
+"Jak se připojit k serveru, ponechte [kbd]tcp[/kbd] pokud si nejste jistí"
#: libraries/config/messages.inc.php:378
msgid "Connection type"
@@ -3874,9 +3902,9 @@ msgid ""
"alphabetical order."
msgstr ""
"Můžete použít žolíky MySQL (% a _), escapujte je, pokud je chcete použít "
-"jako znaky, např. použijte 'moje\\_db' a ne 'moje_db'. Použitím této volby "
-"můžete také změnit pořadí databází, stačí na konci seznamu uvést [kbd]*[/"
-"kbd] pro zobrazní ostatních v abecedním pořadí."
+"jako znaky, např. použijte [kbd]moje\\_db[/kbd] a ne [kbd]moje_db[/kbd]. "
+"Použitím této volby můžete také změnit pořadí databází, stačí na konci "
+"seznamu uvést [kbd]*[/kbd] pro zobrazní ostatních v abecedním pořadí."
#: libraries/config/messages.inc.php:400
msgid "Show only listed databases"
@@ -4133,7 +4161,7 @@ msgstr "Dlouhé jméno tohoto serveru"
#: libraries/config/messages.inc.php:448
msgid "Whether a user should be displayed a "show all (rows)" button"
-msgstr "Jestli uživateli bude zobrazeno tlačítko "zobrazit vše""
+msgstr "Jestli uživateli bude zobrazeno tlačítko "Zobrazit vše""
#: libraries/config/messages.inc.php:449
msgid "Allow to display all the rows"
@@ -4433,8 +4461,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%29]"
-"ZIP[/a] kompresi pro importování a exportování"
+"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] "
+"kompresi pro import a export"
#: libraries/config/messages.inc.php:512
msgid "ZIP"
@@ -4587,7 +4615,7 @@ msgstr "Návrhář"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Oprávnění"
@@ -4599,7 +4627,7 @@ msgstr "Rutiny"
msgid "Return type"
msgstr "Návratový typ"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4785,9 +4813,9 @@ msgstr "Znaková sada souboru:"
msgid "Compression:"
msgstr "Komprese:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Žádná"
@@ -4920,37 +4948,53 @@ msgstr "Parametry pro výstupní formát:"
msgid "Language"
msgstr "Jazyk"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Obnovit pořadí sloupců"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Uspořádejte přetažením"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Klikněte pro řazení"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Klikněte pro označení"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d není platné číslo řádku."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "řádků začínající od"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "vodorovném"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "vodorovném (otočené hlavičky)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "svislém"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "ve %s režimu a opakovat hlavičky po %s řádcích"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Seřadit podle klíče"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4963,92 +5007,92 @@ msgstr "Seřadit podle klíče"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Nastavení"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Zkrácené texty"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Celé texty"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relační klíč"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Pole pro zobrazení v relacích"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Zobrazit binární obsah"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Zobrazit obsah BLOBu"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformace při prohlížení"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopírovat"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Řádek byl smazán"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Ukončit"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "v dotazu"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Zobrazeny záznamy"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "celkem"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "dotaz trval %01.4f sekund"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Změnit"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operace s výsledky dotazu"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Náhled pro tisk (s kompletními texty)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Zobrazit graf"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Vytvořit pohled"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Odkaz nenalezen"
@@ -5094,7 +5138,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Vyrovnávací paměť"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Stav InnoDB"
@@ -5593,7 +5637,7 @@ msgstr "Zobrazit MIME typy"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Počítač"
@@ -5813,7 +5857,7 @@ msgstr "Výsledek SQL dotazu"
msgid "Generated by"
msgstr "Vygeneroval"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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ů)."
@@ -5974,7 +6018,7 @@ msgstr "Přidat tabulce předponu"
msgid "Add prefix"
msgstr "Přidat předponu"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Žádná změna"
@@ -6308,14 +6352,14 @@ msgid "Slave status"
msgstr "Stav podřízeného"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Proměnná"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Hodnota"
@@ -6543,20 +6587,20 @@ msgid "Synchronize"
msgstr "Synchronizace"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binární log"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Proměnné"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Znakové sady"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Úložiště"
@@ -6601,11 +6645,11 @@ msgstr "Vyčistit"
msgid "Columns"
msgstr "Pole"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Přidat tento SQL dotaz do oblíbených"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
@@ -6830,7 +6874,7 @@ msgstr "Definice PARTITION"
msgid "+ Add a new value"
msgstr "+ Přidat novou hodnotu"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Čas"
@@ -6881,13 +6925,13 @@ msgid ""
"documentation for PHP's strftime() function and for \"utc\" it is done using "
"gmdate() function."
msgstr ""
-"Zobrazí datum nebo čas (TIME, TIMESTAMP, DATETIME nebo unixový timestamp v "
-"numerickém poli). První parametr je posun (v hodinách), který bude přidán "
-"k času (výchozí je 0). Druhý parametr je formátovací řetězec. Třetí určuje "
-"jestli chcete zobrazit datum podle místního nastavení nebo UTC čas (použijte "
-"text „local“ nebo „utc“). Podle tohoto nastavení, formát má buďto syntaxi "
-"funkce strftime() pokud použijete „local“ nebo pro gmtime() pokud použijete "
-"„utc“."
+"Zobrazí formátovaně datum nebo čas z pole TIME, TIMESTAMP, DATETIME nebo "
+"unixový timestamp v numerickém poli. První parametr je posun (v hodinách), "
+"který bude přidán k času (výchozí je 0). Druhý parametr je formátovací "
+"řetězec. Třetí určuje jestli chcete zobrazit datum podle místního nastavení "
+"nebo UTC čas (použijte text „local“ nebo „utc“). Podle tohoto nastavení, "
+"formát má buďto syntaxi funkce strftime() pokud použijete „local“ nebo pro "
+"gmtime() pokud použijete „utc“."
#: libraries/transformations/text_plain__external.inc.php:9
msgid ""
@@ -7024,7 +7068,7 @@ msgid "Protocol version"
msgstr "Verze protokolu"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Uživatel"
@@ -7293,7 +7337,7 @@ msgstr "Sloučit"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operátor"
@@ -7340,7 +7384,7 @@ msgstr "Vytvořit novou stránku a exportovat na ní"
#: pmd_pdf.php:111
msgid "New page name: "
-msgstr "Název nové stránky:"
+msgstr "Název nové stránky: "
#: pmd_pdf.php:114
msgid "Export/Import to scale"
@@ -7468,17 +7512,17 @@ msgstr "Soubor neexistuje"
msgid "Select binary log to view"
msgstr "Zvolte binární log pro zobrazení"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Soubory"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Zobrazit zkrácené dotazy"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Zobrazit celé dotazy"
@@ -8001,7 +8045,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Zobrazit stav nadřízeného"
@@ -8148,12 +8192,32 @@ msgstr ""
"Tento server není nastaven jako podřízený v replikačním procesu. Přejete si "
"ho nastavit ?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Obnovovací frekvence"
+
+#: server_status.php:31
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minuta"
+msgstr[1] "%d minuty"
+msgstr[2] "%d minut"
+
+#: server_status.php:33
+#, php-format
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "%d sekunda"
+msgstr[1] "%d sekundy"
+msgstr[2] "%d sekund"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Vlákno %s bylo úspěšně zabito."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8161,166 +8225,123 @@ msgstr ""
"phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již "
"skončil."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Obslužné rutiny"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Vyrovnávací paměť dotazů"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Počet vláken"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Dočasná data"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Odložené inserty"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Vyrovnávací paměť klíčů"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Použité výběry"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Řazení"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Koordinátor transakcí"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Zavřít všechny tabulky"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Zobrazit otevřené tabulky"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Zobrazit podřízené servery"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Zobrazit stav podřízených serverů"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Vyprázdnit vyrovnávací paměť dotazů"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Stav serveru"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Server"
+msgstr "Síťový provoz serveru"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Statistika dotazů"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Zobrazit tabulku se stavem podřízených"
+msgstr "Všechny stavové proměnné"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Obnovit"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekundy"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekundy"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuty"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "Neměnit heslo"
+msgstr "Obsahující slovo:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Zobrazit otevřené tabulky"
+msgstr "Zobrazit jen hodnoty s upozorněním"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrovat podle kategorie..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "Související odkazy"
+msgstr "Související odkazy:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "za hodinu"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "za minutu"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "za sekundu"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Typ dotazu"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "#"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Síťový provoz od spuštění: %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Tento MySQL server běží %s. Čas spuštění: %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8328,33 +8349,33 @@ msgstr ""
"Tento server pracuje jako nadřízený i podřízený v "
"replikačním procesu."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
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:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Pro více informací o stavu replikace se podívejte do sekce replikace ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Stav replikace"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Provoz"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8362,45 +8383,39 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Přijato"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Odesláno"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Připojení"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Maximum současných připojení"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Nepovedených pokusů"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Přerušené"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesy"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Could not connect to MySQL server"
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Nepodařilo se připojit k MySQL serveru"
+msgstr "Počet chybných připojení k MySQL serveru."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8410,16 +8425,16 @@ msgstr ""
"binlog_cache_size a musely použít dočasný soubor pro uložení příkazů "
"transakce."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "Celkový počet připojení (i chybných) k MySQL serveru."
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8430,18 +8445,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Počet vytvořených dočasných souborů."
-#: server_status.php:846
+#: server_status.php:855
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:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8449,7 +8464,7 @@ msgstr ""
"Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba "
"(pravděpodobně duplicitní klíč)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8457,23 +8472,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Počet řádků zapsaných pomocí INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Počet provedených příkazů FLUSH."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Počet interních příkazů COMMIT."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Počet požadavků na smazání řádku."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8482,7 +8497,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:854
+#: server_status.php:863
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, "
@@ -8492,7 +8507,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:855
+#: server_status.php:864
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."
@@ -8500,7 +8515,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:856
+#: server_status.php:865
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 "
@@ -8510,7 +8525,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8518,7 +8533,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:858
+#: server_status.php:867
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 "
@@ -8530,7 +8545,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:859
+#: server_status.php:868
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 "
@@ -8541,35 +8556,35 @@ msgstr ""
"pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné "
"indexy."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Počet interních příkazů ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Počet požadavků na aktualizaci řádku."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Počet požadavků na vložení řádku."
-#: server_status.php:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Počet změněných stránek."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Počet volných stránek."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8578,7 +8593,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:868
+#: server_status.php:877
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 "
@@ -8590,11 +8605,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Celková velikost InnoDB bufferů, ve stránkách."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8602,7 +8617,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8610,11 +8625,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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Počet provedených logických čtení."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8622,7 +8637,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:874
+#: server_status.php:883
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 "
@@ -8635,55 +8650,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Počet zápisů provedených do InnoDB bufferu."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Počet provedených synchronizací fsync()."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Počet nevyřízených synchronizací fsync()."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Počet nevyřízených čtení."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Počet nevyřízených zápisů."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Velikost přečtených dat, v bajtech."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Počet provedených čtení dat."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Počet provedených zápisů dat."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Velikost zapsaných dat, v bajtech."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8691,35 +8706,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Počet požadavků na zápis do logovacího souboru."
-#: server_status.php:888
+#: server_status.php:897
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:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Počet nevyřízených synchronizací logovacích souborů."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Počet nevyřízených zápisů do logovacích souborů."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Počet bajtů zapsaných do logovacího souboru."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Počet vytvořených stránek."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8727,51 +8742,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Počet přečtených stránek."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Počet zapsaných stránek."
-#: server_status.php:897
+#: server_status.php:906
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:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Počet řádků odstraněných z InnoDB tabulek."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Počet řádků vložených do InnoDB tabulek."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Počet řádků přečtených z InnoDB tabulek."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Počet řádků aktualizovaných v InnoDB tabulkách."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8779,7 +8794,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:907
+#: server_status.php:916
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."
@@ -8787,7 +8802,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:908
+#: server_status.php:917
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 "
@@ -8796,11 +8811,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8810,15 +8825,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8828,17 +8843,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
-msgstr ""
+msgstr "Maximální počet současně používaných připojení od spuštění serveru."
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8846,38 +8861,41 @@ 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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Počet otevřených souborů."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Počet aktuálně otevřených tabulek."
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Počet volných bloků paměti ve vyrovnávací paměti dotazů. Velké číslo ukazuje "
+"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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Počet zásahů vyrovnávací paměti dotazů."
-#: server_status.php:923
+#: server_status.php:932
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:924
+#: server_status.php:933
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 "
@@ -8889,7 +8907,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8897,19 +8915,19 @@ msgstr ""
"Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli "
"nastavení query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Počet dotazů ve vyrovnávací paměti dotazů."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stav failsafe replikace."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8917,12 +8935,12 @@ msgstr ""
"Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli "
"byste zkontrolovat indexy tabulek."
-#: server_status.php:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -8930,7 +8948,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8938,38 +8956,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -8978,23 +8996,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Počet řazení, které byly omezeny rozsahem."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Počet řazených řádek."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9005,7 +9023,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:945
+#: server_status.php:954
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 "
@@ -9015,11 +9033,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Počet aktuálně otevřených připojení."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9030,7 +9048,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Počet vláken, která nespí."
@@ -9153,7 +9171,7 @@ msgstr "Proměnné a nastavení serveru"
msgid "Session value"
msgstr "Hodnota sezení"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globální hodnota"
@@ -9479,39 +9497,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Tajný klíč by měl obsahovat číslice, písmena [em]A[/em] zvláštní znaky."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Projít hodnoty cizích klíčů"
-#: sql.php:170
+#: sql.php:181
#, 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:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID vloženého řádku: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Zobrazuji jako PHP kód"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Zobrazuji SQL dotaz"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Proběhlo zkontrolování SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexy v tabulce „%s\""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Název"
@@ -9593,10 +9611,8 @@ msgid "Line"
msgstr "Čára"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "Upravit zde"
+msgstr "Křivka"
#: tbl_chart.php:89
msgid "Pie"
@@ -9607,50 +9623,36 @@ msgid "Stacked"
msgstr "Skládané"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Název výpisu:"
+msgstr "Název grafu"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Osa X:"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "SQL dotazy"
+msgstr "Série:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Sloupců v textové oblasti"
+msgstr "Zbývající sloupce"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "Popis osy X"
+msgstr "Popis osy X:"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Hodnota"
+msgstr "Hodnoty X"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "Popis osy Y"
+msgstr "Popis osy Y:"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Hodnota"
+msgstr "Hodnoty Y"
#: tbl_create.php:56
#, php-format
@@ -9888,23 +9890,23 @@ msgstr "Omezení cizího klíče"
msgid "No rows selected"
msgstr "Nebyl vybrán žádný řádek"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Zvolte pole (alespoň jedno):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "záznamů na stránku"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Seřadit podle:"
@@ -10184,6 +10186,12 @@ msgstr "Jméno pohledu"
msgid "Rename view to"
msgstr "Přejmenovat pohled na"
+#~ msgid "Theme / Style"
+#~ msgstr "Vzhled"
+
+#~ msgid "seconds"
+#~ msgstr "Sekundy"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Porovnání běhu dotazu (v mikrosekundách)"
diff --git a/po/cy.po b/po/cy.po
index 0aa6d4d29f..c9f9aa56f3 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,9 +6,9 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
-"Last-Translator: \n"
+"Last-Translator: \n"
"Language-Team: Welsh \n"
"Language: cy\n"
"MIME-Version: 1.0\n"
@@ -18,12 +18,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Dangos pob"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -41,23 +41,23 @@ msgstr ""
"ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod "
"caniatáu diweddariadau traws-ffenest."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Chwilio"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -74,7 +74,7 @@ msgstr "Chwilio"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -87,7 +87,7 @@ msgstr "Enw allweddol"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Disgrifiad"
@@ -140,7 +140,7 @@ msgstr "Sylwadau tabl"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Colofn"
@@ -153,7 +153,7 @@ msgstr "Colofn"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Math"
@@ -169,7 +169,7 @@ msgstr "Math"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -198,7 +198,7 @@ msgstr "Cysylltu i"
msgid "Comments"
msgstr "Sylwadau"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -209,12 +209,12 @@ msgstr "Sylwadau"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Na"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -229,7 +229,7 @@ msgstr "Na"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -248,11 +248,11 @@ msgstr "Dangos dadlwythiad (sgema) y gronfa ddata"
msgid "No tables found in database."
msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Dewis Pob"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Dad-ddewis Pob"
@@ -274,7 +274,7 @@ msgstr "Cafodd y gronfa ddata %s ei chopïo i %s"
msgid "Rename database to"
msgstr "Ailenwch y gronfa ddata i"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Gorchymyn"
@@ -335,7 +335,7 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -360,7 +360,7 @@ msgstr "Golygu neu allforio sgema perthynol"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabl"
@@ -376,7 +376,7 @@ msgstr "Rhesi"
msgid "Size"
msgstr "Maint"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "ar ddefnydd"
@@ -402,7 +402,7 @@ msgstr "Diweddariad diwethaf"
msgid "Last check"
msgstr "Gwiriad diwethaf"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -422,25 +422,25 @@ msgid "visual builder"
msgstr "adeiladwr gweledol"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Trefnu"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Esgynnol"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Disgynnol"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Dangos"
@@ -463,7 +463,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Or"
@@ -492,39 +492,39 @@ msgstr "Defnyddiwch Dablau"
msgid "SQL query on database %s :"
msgstr "Ymholiad SQL ar gronfa ddata %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Cyflwyno Ymholiad"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Mynediad wedi'i wrthod"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "o leiaf un o'r geiriau"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "pob gair"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "y cymal union"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "fel mynegiad arferol (regular expression)"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Canlyniadau chwilio am \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -532,19 +532,19 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s ergyd mewn tabl %s "
msgstr[1] "%s ergyd mewn tabl %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Pori"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Dileu'r cydweddau ar gyfer tabl %s"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -555,65 +555,65 @@ msgstr "Dileu'r cydweddau ar gyfer tabl %s"
msgid "Delete"
msgstr "Dileu"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Cyfanswm: %s cydwedd"
msgstr[1] "Cyfanswm: %s cydwedd"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Chwilio yn y gronfa ddata"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Geiriau neu werthoedd i'w chwilio amdanyn nhw (nod-chwiliwr: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Darganfod:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Caiff geiriau eu gwahanu gan nod bwlch (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Tu fewn tabl(au):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Tu fewn colofn:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Cafodd tabl %s ei wagu"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Cafodd golwg %s ei ollwng"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Cafodd tabl %s ei ollwng"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Mae tracio'n weithredol"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Nid yw tracio'n weithredol"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -621,108 +621,108 @@ msgid ""
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Dangos"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Dyblygiad"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Swm"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Gyda'r dewis:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Dewis Pob"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Dad-ddewis Pob"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Gwiriwch dablau â gorbenion"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Allforio"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Argraffu golwg"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Gwagu"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Gollwng"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Gwirio tabl"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimeiddio tabl"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Trwsio tabl"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Dadansoddi tabl"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Rename table to"
msgid "Replace table prefix"
msgstr "Ailenwi tabl i"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr ""
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Geiriadur Data"
@@ -737,9 +737,9 @@ msgstr "Tablau a draciwyd"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Cronfa ddata"
@@ -755,8 +755,8 @@ msgstr "Crëwyd"
msgid "Updated"
msgstr "Diweddarwyd"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Statws"
@@ -900,7 +900,7 @@ msgstr "Cafodd y clustnod ei ddileu."
msgid "Showing bookmark"
msgstr "Dangos clustnod"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Clustnodi %s a grëwyd"
@@ -924,7 +924,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -950,15 +950,15 @@ msgstr "Pwyso i ddewis"
msgid "Click to unselect"
msgstr "Pwyso i dad-ddewis"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "A ydych chi wir am"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Rydych am DINISTRIO cronfa ddata gyfan!"
@@ -1061,190 +1061,230 @@ msgstr ""
msgid "Close"
msgstr "Cau"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Dewis Gweinydd"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show insert query"
-msgid "Live query chart"
-msgstr "Dangos ymholiad mewnosod"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Cyfanswm"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-#| msgid "Load"
-msgid "Loading"
-msgstr "llwytho"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Prosesau"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Ailenwch y gronfa ddata i"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Ailenwch y gronfa ddata i"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Copïwch y gronfa ddata i"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Set nodau"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Crëwch dabl"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Defnyddiwch Dablau"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Chwilio"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "in query"
-msgid "Hide search results"
-msgstr "mewn ymholiad"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show insert query"
-msgid "Show search results"
-msgstr "Dangos ymholiad mewnosod"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Porwch"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Delete"
-msgid "Deleting"
-msgstr "Dileu"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query box"
-msgstr "mewn ymholiad"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "Show insert query"
-msgid "Show query box"
-msgstr "Dangos ymholiad mewnosod"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Inline"
-msgid "Inline Edit"
-msgstr "Mewnol"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Golygu"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Dewis Gweinydd"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show insert query"
+msgid "Live query chart"
+msgstr "Dangos ymholiad mewnosod"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Cyfanswm"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Dewis Gweinydd"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Prosesau"
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr ""
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Show statistics"
+msgid "Query statistics"
+msgstr "Dangos ystadegau"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+#| msgid "Load"
+msgid "Loading"
+msgstr "llwytho"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Prosesau"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Ailenwch y gronfa ddata i"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Ailenwch y gronfa ddata i"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Copïwch y gronfa ddata i"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Set nodau"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Crëwch dabl"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Defnyddiwch Dablau"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Chwilio"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "in query"
+msgid "Hide search results"
+msgstr "mewn ymholiad"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show insert query"
+msgid "Show search results"
+msgstr "Dangos ymholiad mewnosod"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Porwch"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Delete"
+msgid "Deleting"
+msgstr "Dileu"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "in query"
+msgid "Hide query box"
+msgstr "mewn ymholiad"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "Show insert query"
+msgid "Show query box"
+msgstr "Dangos ymholiad mewnosod"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Inline"
+msgid "Inline Edit"
+msgstr "Mewnol"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1252,77 +1292,77 @@ msgstr "Golygu"
msgid "Save"
msgstr "Cadw"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Cuddio"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "mewn ymholiad"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "Show insert query"
msgid "Show search criteria"
msgstr "Dangos ymholiad mewnosod"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Anwybyddu"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Dewis Allwedd Estron"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Dewis colofn i'w dangos"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generadu Cyfrinair"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generadu"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Newid cyfrinair"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "Llu"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1330,262 +1370,262 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Gwiriwch y fersiwn diweddaraf"
-#: js/messages.php:150
+#: js/messages.php:163
#, 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:168
+#: js/messages.php:181
msgid "Done"
msgstr "Gorffen"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Cynt"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Nesaf"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Heddiw"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Ionawr"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Chwefror"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Mawrth"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Ebrill"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Mehefin"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Gorffennaf"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Awst"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Medi"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Hydref"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Tachwedd"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Rhagfyr"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Ion"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Chwe"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Maw"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Meh"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Gor"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aws"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Med"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Hyd"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Tach"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Rhag"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Dydd Sul"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Dydd Llun"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Dydd Mawrth"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "DYdd Mercher"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Dydd Iau"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Dydd Gwener"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Dydd Sadwrn"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Llun"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Maw"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Iau"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Llu"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Ia"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Gw"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Wy"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Awr"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Munud"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Eiliad"
@@ -1676,7 +1716,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Cronfeydd Data"
@@ -1745,25 +1785,25 @@ msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Crofna ddata annilys"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Enw tabl annilys"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Gwall wrth ailenwi tabl %1$s i %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Cafodd y tabl %s ei ailenwi i %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1795,10 +1835,9 @@ msgstr "Heb ddarganfod thema ddiofyn %s!"
msgid "Theme path not found for theme %s!"
msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Thema / Arddull"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1806,7 +1845,6 @@ msgstr "Methu â chysylltu: gosodiadau annilys"
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
@@ -1963,7 +2001,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tablau"
@@ -2042,7 +2080,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Gweinydd"
@@ -2090,7 +2127,7 @@ msgid "Documentation"
msgstr "Dogfennaeth"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Ymholiad SQL"
@@ -2098,121 +2135,121 @@ msgstr "Ymholiad SQL"
msgid "MySQL said: "
msgstr "Dywedodd MySQL:"
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "Methu â chysylltu i'r gweinydd MySQL"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Esbonio SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Sgipio Esbonio SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Heb God PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Creu Cod PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Adfywio"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Sgipio Dilysu SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Dilysu SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Golygu mewnol yr ymholiad hwn"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Mewnol"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Proffilio"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y am %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s diwrnod, %s awr, %s munud a %s eiliad"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Dechrau"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Cynt"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Diwedd"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Neidio i gronfa ddata "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2224,44 +2261,44 @@ msgstr ""
msgid "Structure"
msgstr "Strwythur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Mewnosod"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Gweithrediadau"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a "
"lanwlythwyd"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2618,7 +2655,7 @@ msgstr "Tab tabl diofyn"
msgid "Show binary contents as HEX by default"
msgstr "Dangos cynnwys deuaidd fel HEX"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Dangos cynnwys deuaidd fel HEX"
@@ -4573,7 +4610,7 @@ msgstr "Dyluniwr"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Breintiau"
@@ -4585,7 +4622,7 @@ msgstr "Rheolweithiau"
msgid "Return type"
msgstr "Dychwelyd math"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4788,9 +4825,9 @@ msgstr "Set nodau'r ffeil:"
msgid "Compression:"
msgstr "Cywasgiad"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Dim"
@@ -4931,37 +4968,57 @@ msgstr ""
msgid "Language"
msgstr "iaith"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete columns"
+msgid "Restore column order"
+msgstr "Ychwanegu/Dileu colofnau"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Pwyso i ddewis"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "Dydy %d ddim yn rhif rhes dilys."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "rhes(i) yn dechrau o rhes #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "llorweddol"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "llorweddol (penawdau wedi cylchdroi)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "fertigol"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "mewn modd %s ac ailadrodd penawdau ar ôl %s cell "
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Trefnu gan allwedd"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4974,100 +5031,100 @@ msgstr "Trefnu gan allwedd"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opsiynau"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Testunau Rhannol"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Testunau Llawn"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Allwedd perthynol"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Colofn dangosydd perthynol"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Dangos cynnwys deuaidd"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Dangos cynnwys BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Trawsffurfiad porwr"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Cafodd y rhes ei dileu"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Lladd"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "mewn ymholiad"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Yn dangos rhesi"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "cyfanswm"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Cymerodd yr ymholiad %01.4f eiliad"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Newid"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Argraffu golwg (gyda thestunau llawn)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Dangos sgema PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Crëwch fersiwn"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Methu â darganfod y cysylltiad"
@@ -5111,7 +5168,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Pwll Byffer"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Statws InnoDB"
@@ -5580,7 +5637,7 @@ msgstr "Mathau MIME ar gael"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Gwesteiwr"
@@ -5786,7 +5843,7 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -5943,7 +6000,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Dim newid"
@@ -6268,14 +6325,14 @@ msgid "Slave status"
msgstr "Statws y caeth"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Newidyn"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Gwerth"
@@ -6509,20 +6566,20 @@ msgid "Synchronize"
msgstr "Cydamseru"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Log deuaidd"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Newidynnau"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Setiau nod"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Peiriannau"
@@ -6567,11 +6624,11 @@ msgstr "Clirio"
msgid "Columns"
msgstr "Colofnau"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Clustnodwch yr ymholiad SQL hwn"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6771,7 +6828,7 @@ msgstr "Diffiniad PARTITION"
msgid "+ Add a new value"
msgstr "Ychwanegwch weinydd newydd"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Amser"
@@ -6932,7 +6989,7 @@ msgid "Protocol version"
msgstr "Fersiwn protocol"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Defnyddiwr"
@@ -7195,7 +7252,7 @@ msgstr "Creu"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7378,17 +7435,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Ffeiliau"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7893,7 +7950,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8030,263 +8087,246 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr ""
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr ""
-
-#: server_status.php:230
-msgid "Handler"
-msgstr ""
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr ""
-
-#: server_status.php:232
-msgid "Threads"
-msgstr ""
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr ""
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr ""
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr ""
-
-#: server_status.php:237
-msgid "Joins"
-msgstr ""
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr ""
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr ""
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr ""
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr ""
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr ""
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr ""
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Dewis Gweinydd"
-
-#: server_status.php:368
-#, fuzzy
-#| msgid "Show statistics"
-msgid "Query statistics"
-msgstr "Dangos ystadegau"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Adfywio"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Eiliad"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Eiliad"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "Munud"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Munud"
+msgstr[1] "Munud"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Eiliad"
+msgstr[1] "Eiliad"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr ""
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr ""
+
+#: server_status.php:263
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr ""
+
+#: server_status.php:265
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr ""
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:270
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr ""
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr ""
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Dewis Gweinydd"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
msgid "Containing the word:"
msgstr ""
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show only listed databases"
msgid "Show only alert values"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Perthnasau"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr "Prosesau"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8294,78 +8334,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8373,7 +8413,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8381,42 +8421,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8424,33 +8464,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8459,227 +8499,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8687,99 +8727,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8787,18 +8827,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8806,7 +8846,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8927,7 +8967,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -9201,41 +9241,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Dilysu SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9615,23 +9655,23 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr ""
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr ""
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr ""
@@ -9919,23 +9959,21 @@ msgstr "Enw VIEW"
msgid "Rename view to"
msgstr "Ailenwch golwg i"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Thema / Arddull"
+
+#~ msgid "seconds"
+#~ msgstr "Eiliad"
+
#~ msgid "Query results"
#~ msgstr "Gweithrediadau canlyniadau ymholiad"
-#, fuzzy
-#~| msgid "Export"
#~ msgid "Bar type"
#~ msgstr "Allforio"
-#, fuzzy
-#~| msgid "Add a new server"
#~ msgid "Add a New User"
#~ msgstr "Ychwanegwch weinydd newydd"
-#, fuzzy
-#~| msgid "Create version"
#~ msgid "Create User"
#~ msgstr "Crëwch fersiwn"
diff --git a/po/da.po b/po/da.po
index 4c0978f6ef..2d8bea9f90 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
"Last-Translator: \n"
"Language-Team: danish \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"overliggende vindue eller din browser blokerer for tvær-vindue opdateringer "
"i sikkerhedsindstillingerne"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Søg"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Søg"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Nøglenavn"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Beskrivelse"
@@ -96,7 +96,7 @@ msgstr "Brug denne værdi"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Ingen blob streaming server konfigureret!"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
@@ -112,6 +112,7 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"Filen %s er ikke tilgængelig, besøg www.phpmyadmin.net for mere information."
#: db_create.php:58
#, php-format
@@ -135,7 +136,7 @@ msgstr "Tabel kommentarer"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolonnenavn"
@@ -148,7 +149,7 @@ msgstr "Kolonnenavn"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Datatype"
@@ -164,7 +165,7 @@ msgstr "Datatype"
msgid "Null"
msgstr "Nulværdi"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -193,7 +194,7 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -204,12 +205,12 @@ msgstr "Kommentarer"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nej"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -224,7 +225,7 @@ msgstr "Nej"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -243,11 +244,11 @@ msgstr "Vis dump (skema) af database"
msgid "No tables found in database."
msgstr "Ingen tabeller fundet i databasen."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Vælg alle"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Fravælg alle"
@@ -269,7 +270,7 @@ msgstr "Database %s er blevet kopieret til %s"
msgid "Rename database to"
msgstr "Omdøb database til"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Kommando"
@@ -330,23 +331,19 @@ msgstr "Skift til den kopierede database"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
msgstr "Kollation (Collation)"
#: db_operations.php:565
-#, fuzzy, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. To find out why click %shere%s."
+#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"De ekstra features for at arbejde med linkede tabeller er deaktiveret. For "
-"at se hvorfor, klik %sher%s."
+"phpMyAdmin er ikke sat op til at gemme tabel-relationer. Se her %shvorfor%s."
#: db_operations.php:600
msgid "Edit or export relational schema"
@@ -358,7 +355,7 @@ msgstr "Editer eller eksporter relations skema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabel"
@@ -374,7 +371,7 @@ msgstr "Rækker"
msgid "Size"
msgstr "Størrelse"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "i brug"
@@ -400,7 +397,7 @@ msgstr "Sidste opdatering"
msgid "Last check"
msgstr "Sidste check"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -420,25 +417,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sorter"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Stigende"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Faldende"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Vis"
@@ -461,7 +458,7 @@ msgstr "Del (Slet)"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Eller"
@@ -490,59 +487,58 @@ msgstr "Benyt tabeller"
msgid "SQL query on database %s :"
msgstr "SQL-forespørgsel til database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Send forespørgsel"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Adgang Nægtet"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "mindst et af ordene"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "alle ordene"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "den nøjagtige sætning"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "som regulært udtryk"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Søgeresultater for \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s hit i tabel %s "
msgstr[1] "%s hits i tabel %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Vis"
-#: db_search.php:259
-#, fuzzy, php-format
-#| msgid "Dumping data for table"
+#: db_search.php:261
+#, php-format
msgid "Delete the matches for the %s table?"
-msgstr "Data dump for tabellen"
+msgstr "Slet match for %s tabellen"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -553,186 +549,177 @@ msgstr "Data dump for tabellen"
msgid "Delete"
msgstr "Slet"
-#: db_search.php:272
-#, fuzzy, php-format
-#| msgid "Total: %s match(es)"
+#: db_search.php:274
+#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
-msgstr[0] "Total: %s hit(s)"
-msgstr[1] "Total: %s hit(s)"
+msgstr[0] "I alt: %s hit"
+msgstr[1] "I alt %s hits"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Søg i databasen"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Ord eller værdi(er) (jokertegn: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Find:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Ord adskilles af mellemrums-karakter (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Indeni tabel(ler):"
-#: db_search.php:351
-#, fuzzy
-#| msgid "Inside table(s):"
+#: db_search.php:353
msgid "Inside column:"
-msgstr "Indeni tabel(ler):"
+msgstr "Indeni kolonne:"
-#: db_structure.php:59
-#, fuzzy
-#| msgid "No tables found in database."
+#: db_structure.php:60
msgid "No tables found in database"
-msgstr "Ingen tabeller fundet i databasen."
+msgstr "Ingen tabeller fundet i databasen"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s er tømt"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Visning %s er blevet droppet"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s er slettet"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
-msgstr ""
+msgstr "Sporing er aktiv."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
-msgstr ""
+msgstr "Sporing er ikke aktiv."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Visning"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikering"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard datalageret på denne MySQL-server."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med det markerede:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Afmærk alt"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Fjern alle mærker"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Check tabeller der har overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Vis (udskriftvenlig)"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Tøm"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Slet"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Tjek tabel"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimer tabel"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparer tabel"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analysér tabel"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
-msgstr ""
+msgstr "Tilføj præfiks til tabel"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
-#, fuzzy
-#| msgid "Replace table data with file"
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
-msgstr "Erstat data i tabellen med filens data"
+msgstr "Erstat tabel præfiks"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
-#, fuzzy
-#| msgid "Replace table data with file"
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
-msgstr "Erstat data i tabellen med filens data"
+msgstr "Kopier tabel med præfiks"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Dictionary"
#: db_tracking.php:79
msgid "Tracked tables"
-msgstr ""
+msgstr "Sporede tabeller"
#: db_tracking.php:84 libraries/config/messages.inc.php:491
#: libraries/export/htmlword.php:89 libraries/export/latex.php:162
@@ -741,26 +728,26 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Database"
#: db_tracking.php:86
msgid "Last version"
-msgstr ""
+msgstr "Seneste version"
#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
-msgstr ""
+msgstr "Oprettet"
#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
-msgstr ""
+msgstr "Opdateret"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -773,49 +760,49 @@ msgstr "Handling"
#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
-msgstr ""
+msgstr "Sletter sporingsdata for denne tabel."
#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
-msgstr ""
+msgstr "aktiv"
#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
-msgstr ""
+msgstr "ikke aktiv"
#: db_tracking.php:134
msgid "Versions"
-msgstr ""
+msgstr "Versioner"
#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
-msgstr ""
+msgstr "Sporingsrapport"
#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
-msgstr ""
+msgstr "Øjebliksbillede af struktur"
#: db_tracking.php:181
msgid "Untracked tables"
-msgstr ""
+msgstr "Ikke-sporede tabeller"
#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
#: tbl_structure.php:624
msgid "Track table"
-msgstr ""
+msgstr "Spor tabel"
#: db_tracking.php:229
msgid "Database Log"
-msgstr ""
+msgstr "Database log"
#: enum_editor.php:21 libraries/tbl_properties.inc.php:792
#, php-format
msgid "Values for the column \"%s\""
-msgstr ""
+msgstr "Værdier for kolonnen \"%s\""
#: enum_editor.php:22 libraries/tbl_properties.inc.php:793
msgid "Enter each value in a separate field."
-msgstr ""
+msgstr "Indtast hver værdi i et seperat felt."
#: enum_editor.php:57
msgid "+ Restart insertion and add a new value"
@@ -905,7 +892,7 @@ msgstr "Bogmærket er fjernet."
msgid "Showing bookmark"
msgstr "Viser bogmærke"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bogmærke %s oprettet"
@@ -933,7 +920,7 @@ msgstr ""
"mindre du forøger PHP-tidsbegrænsningerne."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -954,29 +941,27 @@ msgstr ""
#: server_synchronize.php:734 server_synchronize.php:762
#: server_synchronize.php:790 server_synchronize.php:802
msgid "Click to select"
-msgstr ""
+msgstr "Klik for at vælge"
#: js/messages.php:26
msgid "Click to unselect"
-msgstr ""
+msgstr "Klik for at fravælge"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Er du sikker på at du vil "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Du er ved at DESTRUERE en komplet database!"
#: js/messages.php:32
-#, fuzzy
-#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to DESTROY a complete table!"
-msgstr "Du er ved at DESTRUERE en komplet database!"
+msgstr "Du er ved at DESTRUERE en komplet tabel!"
#: js/messages.php:33
#, fuzzy
@@ -995,14 +980,12 @@ msgid "Dropping Procedure"
msgstr "Procedurer"
#: js/messages.php:37
-#, fuzzy
-#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
-msgstr "Tillader indsættelse og erstatning af data."
+msgstr "Slet sporingsdata"
#: js/messages.php:38
msgid "Dropping Primary Key/Index"
-msgstr ""
+msgstr "Fjerner primærnøgle/indeks"
#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
@@ -1056,204 +1039,219 @@ msgid "Add user"
msgstr "Enhver bruger"
#: js/messages.php:59
-#, fuzzy
-#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
-msgstr "Genindlæs privilegierne"
+msgstr "Genindlæser privillegier"
#: js/messages.php:60
-#, fuzzy
-#| msgid "Remove selected users"
msgid "Removing Selected Users"
-msgstr "Fjern valgte brugere"
+msgstr "Fjerner valge brugere"
#: js/messages.php:61 libraries/tbl_properties.inc.php:791
#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
-msgstr ""
+msgstr "Luk"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Server valg"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Live query chart"
-msgstr "Viser SQL-forespørgsel"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Processer"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Omdøb database til"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Omdøb database til"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Kopiér database til"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Tegnsæt"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "Tabellen skal indeholde mindst ét felt."
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Opret tabel"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Benyt tabeller"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Søg"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "in query"
-msgid "Hide search results"
-msgstr "i forespørgsel"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Show search results"
-msgstr "Viser SQL-forespørgsel"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Vis"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Sletter %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query box"
-msgstr "i forespørgsel"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Show query box"
-msgstr "Viser SQL-forespørgsel"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Lagre"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ret"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Server valg"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Live query chart"
+msgstr "Viser SQL-forespørgsel"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Server valg"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processer"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Forbindelser"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statistik over forespørgsler"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Indlæser"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Udfører forespørgsel"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Felj i udførsel af forespørgsel"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Tilføjer primær nøgle"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Omdøb database til"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Omdøb database til"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopierer database til"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Ændrer tegnsæt"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabellen skal have mindst en kolonne"
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Opret tabel"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Benyt tabeller"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Søger"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Slet søgeresultater"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Vis søgeresultater"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Vis"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Sletter"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Skjul forespørgeselsboks"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Vis forespørgselsbox"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Åben redigeringslinje"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1261,209 +1259,183 @@ msgstr "Ret"
msgid "Save"
msgstr "Gem"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skjul"
-#: js/messages.php:122
-#, fuzzy
-#| msgid "in query"
+#: js/messages.php:135
msgid "Hide search criteria"
-msgstr "i forespørgsel"
+msgstr "Skjul søgekriterie"
-#: js/messages.php:123
-#, fuzzy
-#| msgid "Showing SQL query"
+#: js/messages.php:136
msgid "Show search criteria"
-msgstr "Viser SQL-forespørgsel"
+msgstr "Vis søgekriterie"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Vælg refereret nøgle"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Vælg fremmednøgle"
-#: js/messages.php:131
+#: js/messages.php:144
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:132 pmd_general.php:87 tbl_relation.php:545
-#, fuzzy
-#| msgid "Choose field to display"
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
-msgstr "Vælg felt der skal vises"
+msgstr "Vælg kolonne til visning"
-#: js/messages.php:133
+#: js/messages.php:146
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 ""
+"Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke "
+"gemmer dem. Vil du fortsætte?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
-msgstr ""
+msgstr "Tilføj mulighed for kolonne"
-#: js/messages.php:139
-#, fuzzy
-#| msgid "Generate Password"
+#: js/messages.php:152
msgid "Generate password"
-msgstr "Generér Kodeord"
+msgstr "Generér adgangskode"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generér"
-#: js/messages.php:141
-#, fuzzy
-#| msgid "Change password"
+#: js/messages.php:154
msgid "Change Password"
-msgstr "Ændre kodeord"
+msgstr "Ændre adgangskode"
-#: js/messages.php:144 tbl_structure.php:471
-#, fuzzy
-#| msgid "Mon"
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
-msgstr "man"
+msgstr "Mere"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
+"En nyere version af phpMyAdmin er tilgængelig og du bør overveje at "
+"opgradere. Den nyeste version er %s, udgivet den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
-msgstr ""
+msgstr ", seneste stabile version:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "Ingen databaser"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
-#, fuzzy
-#| msgid "None"
+#: js/messages.php:181
msgid "Done"
-msgstr "Ingen"
+msgstr "Færdig"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Næste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
-#, fuzzy
-#| msgid "Total"
+#: js/messages.php:187
msgid "Today"
-msgstr "Total"
+msgstr "I dag"
-#: js/messages.php:177
-#, fuzzy
-#| msgid "Binary"
+#: js/messages.php:190
msgid "January"
-msgstr " Binært "
+msgstr "januar"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
-msgstr ""
+msgstr "februar"
-#: js/messages.php:179
-#, fuzzy
-#| msgid "Mar"
+#: js/messages.php:192
msgid "March"
-msgstr "mar"
+msgstr "marts"
-#: js/messages.php:180
-#, fuzzy
-#| msgid "Apr"
+#: js/messages.php:193
msgid "April"
-msgstr "apr"
+msgstr "april"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "maj"
-#: js/messages.php:182
-#, fuzzy
-#| msgid "Jun"
+#: js/messages.php:195
msgid "June"
-msgstr "jun"
+msgstr "juni"
-#: js/messages.php:183
-#, fuzzy
-#| msgid "Jul"
+#: js/messages.php:196
msgid "July"
-msgstr "jul"
+msgstr "juli"
-#: js/messages.php:184
-#, fuzzy
-#| msgid "Aug"
+#: js/messages.php:197
msgid "August"
-msgstr "aug"
+msgstr "august"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
-msgstr ""
+msgstr "september"
-#: js/messages.php:186
-#, fuzzy
-#| msgid "Oct"
+#: js/messages.php:199
msgid "October"
-msgstr "okt"
+msgstr "oktober"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
-msgstr ""
+msgstr "november"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
-msgstr ""
+msgstr "december"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1471,180 +1443,156 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "dec"
-#: js/messages.php:217
-#, fuzzy
-#| msgid "Sun"
+#: js/messages.php:230
msgid "Sunday"
-msgstr "søn"
+msgstr "søndag"
-#: js/messages.php:218
-#, fuzzy
-#| msgid "Mon"
+#: js/messages.php:231
msgid "Monday"
-msgstr "man"
+msgstr "mandag"
-#: js/messages.php:219
-#, fuzzy
-#| msgid "Tue"
+#: js/messages.php:232
msgid "Tuesday"
-msgstr "tir"
+msgstr "tirsdag"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "fre"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "lør"
#. l10n: Minimal week day name
-#: js/messages.php:243
-#, fuzzy
-#| msgid "Sun"
+#: js/messages.php:256
msgid "Su"
-msgstr "søn"
+msgstr "sø"
#. l10n: Minimal week day name
-#: js/messages.php:245
-#, fuzzy
-#| msgid "Mon"
+#: js/messages.php:258
msgid "Mo"
-msgstr "man"
+msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:247
-#, fuzzy
-#| msgid "Tue"
+#: js/messages.php:260
msgid "Tu"
-msgstr "tir"
+msgstr "ti"
#. l10n: Minimal week day name
-#: js/messages.php:249
-#, fuzzy
-#| msgid "Wed"
+#: js/messages.php:262
msgid "We"
-msgstr "ons"
+msgstr "on"
#. l10n: Minimal week day name
-#: js/messages.php:251
-#, fuzzy
-#| msgid "Thu"
+#: js/messages.php:264
msgid "Th"
-msgstr "tor"
+msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:253
-#, fuzzy
-#| msgid "Fri"
+#: js/messages.php:266
msgid "Fr"
-msgstr "fre"
+msgstr "fr"
#. l10n: Minimal week day name
-#: js/messages.php:255
-#, fuzzy
-#| msgid "Sat"
+#: js/messages.php:268
msgid "Sa"
-msgstr "lør"
+msgstr "lø"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
-msgstr ""
+msgstr "uge"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
-msgstr ""
+msgstr "Time"
-#: js/messages.php:260
-#, fuzzy
-#| msgid "in use"
+#: js/messages.php:273
msgid "Minute"
-msgstr "i brug"
+msgstr "Minut"
-#: js/messages.php:261
-#, fuzzy
-#| msgid "per second"
+#: js/messages.php:274
msgid "Second"
-msgstr "pr. sekund"
+msgstr "Sekund"
#: libraries/Config.class.php:1190
msgid "Font size"
@@ -1705,7 +1653,7 @@ msgstr "Unik"
#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
-msgstr ""
+msgstr "Pakket"
#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
@@ -1713,7 +1661,7 @@ msgstr "Kardinalitet"
#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
-msgstr ""
+msgstr "Kommentar"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
@@ -1730,10 +1678,12 @@ msgid ""
"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
"removed."
msgstr ""
+"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan "
+"sikkert fjernes"
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databaser"
@@ -1748,40 +1698,34 @@ msgstr "Fejl"
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%1$d række påvirket"
+msgstr[1] "%1$d rækker påvirket"
#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
+#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
-msgstr[0] "Ingen rækker valgt"
-msgstr[1] "Ingen rækker valgt"
+msgstr[0] "%1$d række slettet"
+msgstr[1] "%1$d rækker slettet"
#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
+#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
-msgstr[0] "Ingen rækker valgt"
-msgstr[1] "Ingen rækker valgt"
+msgstr[0] "%1$d række sat ind"
+msgstr[1] "%1$d rækker sat ind"
#: libraries/RecentTable.class.php:113
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save recent table"
-msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\""
+msgstr "Kunne ikke gemme seneste tabel"
#: libraries/RecentTable.class.php:148
-#, fuzzy
-#| msgid "Select Tables"
msgid "Recent tables"
-msgstr "Vælg Tabeller"
+msgstr "Seneste tabeller"
#: libraries/RecentTable.class.php:154
msgid "There are no recent tables"
-msgstr ""
+msgstr "Der er ingen nye tabeller"
#: libraries/StorageEngine.class.php:194
msgid ""
@@ -1805,27 +1749,27 @@ msgstr "%s er slået fra på denne MySQL-server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Denne MySQL-server understøtter ikke %s datalager."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Ugyldig database"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Ugyldigt tabelnavn"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fejl ved omdøbning af tabel %1$s til %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabellen %s er nu omdøbt til %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
-msgstr ""
+msgstr "Kunne ikke gemme brugerindstillinger for tabel"
#: libraries/Theme.class.php:160
#, php-format
@@ -1855,10 +1799,9 @@ msgstr "Tema %s ikke fundet!"
msgid "Theme path not found for theme %s!"
msgstr "Sti til tema ikke fundet for tema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Layout"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1866,7 +1809,6 @@ msgstr "Kan ikke forbinde: ugyldige indstillinger."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -1907,6 +1849,8 @@ msgstr "phpMyAdmin dokumentation"
#: libraries/auth/cookie.auth.lib.php:244
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
+"Du kan angive værtsnavn/IP adresse og port ved at adskille dem med et "
+"mellemrum"
#: libraries/auth/cookie.auth.lib.php:243
msgid "Server:"
@@ -1933,6 +1877,8 @@ msgstr "Herefter skal cookies være slået til."
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
+"Det er ifølge konfigurationen ikke tilladt at logge ind uden en adgangskkode "
+"(se AllowNoPassword)"
#: libraries/auth/cookie.auth.lib.php:647
#: libraries/auth/signon.auth.lib.php:238
@@ -1953,17 +1899,17 @@ msgstr "Forkert brugernavn/kodeord. Adgang nægtet."
#: libraries/auth/signon.auth.lib.php:87
msgid "Can not find signon authentication script:"
-msgstr ""
+msgstr "Kunne ikke finde skriptet til godkendelse af log ind"
#: libraries/auth/swekey/swekey.auth.lib.php:118
#, php-format
msgid "File %s does not contain any key id"
-msgstr ""
+msgstr "Filen %s indeholder ikke noget nøgle-id"
#: libraries/auth/swekey/swekey.auth.lib.php:157
#: libraries/auth/swekey/swekey.auth.lib.php:180
msgid "Hardware authentication failed"
-msgstr ""
+msgstr "Godkendelse af hardware mislykkedes"
#: libraries/auth/swekey/swekey.auth.lib.php:166
msgid "No valid authentication key plugged"
@@ -1971,54 +1917,52 @@ msgstr ""
#: libraries/auth/swekey/swekey.auth.lib.php:202
msgid "Authenticating..."
-msgstr ""
+msgstr "Godkender..."
#: libraries/blobstreaming.lib.php:241
msgid "PBMS error"
-msgstr ""
+msgstr "PBMS-fejl"
#: libraries/blobstreaming.lib.php:267
-#, fuzzy
-#| msgid "MySQL connection collation"
msgid "PBMS connection failed:"
-msgstr "MySQL forbindelses-sammenkøring"
+msgstr "Det lykkedes ikke at oprette forbindelse til PBMS"
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
-msgstr ""
+msgstr "PBMS hent BLOB info mislykkedes"
#: libraries/blobstreaming.lib.php:320
msgid "get BLOB Content-Type failed"
-msgstr ""
+msgstr "hent BLOB Content-Type mislykkedes"
#: libraries/blobstreaming.lib.php:347
msgid "View image"
-msgstr ""
+msgstr "Se billede"
#: libraries/blobstreaming.lib.php:351
msgid "Play audio"
-msgstr ""
+msgstr "Afspil lyd"
#: libraries/blobstreaming.lib.php:356
msgid "View video"
-msgstr ""
+msgstr "Se video"
#: libraries/blobstreaming.lib.php:360
msgid "Download file"
-msgstr ""
+msgstr "Download fil"
#: libraries/blobstreaming.lib.php:421
#, php-format
msgid "Could not open file: %s"
-msgstr ""
+msgstr "Kunne ikke åbne filen %s"
#: libraries/bookmark.lib.php:83
msgid "shared"
-msgstr ""
+msgstr "delt"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabeller"
@@ -2041,20 +1985,16 @@ msgid "Overhead"
msgstr "Overhead"
#: libraries/build_html_for_db.lib.php:93
-#, fuzzy
-#| msgid "No databases"
msgid "Jump to database"
-msgstr "Ingen databaser"
+msgstr "Gå til database"
#: libraries/build_html_for_db.lib.php:130
msgid "Not replicated"
-msgstr ""
+msgstr "Ikke gentaget"
#: libraries/build_html_for_db.lib.php:136
-#, fuzzy
-#| msgid "Replication"
msgid "Replicated"
-msgstr "Replikering"
+msgstr "Gentaget"
#: libraries/build_html_for_db.lib.php:150
#, php-format
@@ -2081,10 +2021,9 @@ msgstr ""
"eller et semikolon et sted. Hvis du får en blank side, er alt i orden."
#: libraries/common.inc.php:586
-#, fuzzy, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
+#, php-format
msgid "Could not load default configuration from: %1$s"
-msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\""
+msgstr "Kunne ikke indlæse standardkonfiguration fra: %1$s"
#: libraries/common.inc.php:591
msgid ""
@@ -2095,10 +2034,9 @@ msgstr ""
"konfigurationsfil!"
#: libraries/common.inc.php:621
-#, fuzzy, php-format
-#| msgid "Invalid server index: \"%s\""
+#, php-format
msgid "Invalid server index: %s"
-msgstr "Ugyldigt server indeks: \"%s\""
+msgstr "Server indekset %s er ugyldigt"
#: libraries/common.inc.php:628
#, php-format
@@ -2108,7 +2046,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2156,7 +2093,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-forespørgsel"
@@ -2164,121 +2101,119 @@ msgstr "SQL-forespørgsel"
msgid "MySQL said: "
msgstr "MySQL returnerede: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
-msgstr ""
+msgstr "Kunne ikke oprette forbindelse til SQL validator!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Forklar SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Spring over Forklar SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "uden PHP-kode"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Fremstil PHP-kode"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Opdatér"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Spring over Validér SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validér SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
-msgstr ""
+msgstr "Åben linje til redigering af forespørgslen"
-#: libraries/common.lib.php:1232
-#, fuzzy
-#| msgid "Engines"
+#: libraries/common.lib.php:1248
msgid "Inline"
-msgstr "Lagre"
+msgstr "I linje"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
-msgstr ""
+msgstr "Skitsering"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %m %Y kl. %H:%M:%S"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dage, %s timer, %s minutter og %s sekunder"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Slut"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Hop til database "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2290,78 +2225,75 @@ msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s"
msgid "Structure"
msgstr "Struktur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Indsæt"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operationer"
-#: libraries/common.lib.php:2885
-msgid "Browse your computer:"
-msgstr ""
-
#: libraries/common.lib.php:2901
-#, fuzzy, php-format
-#| msgid "web server upload directory"
-msgid "Select from the web server upload directory %s :"
-msgstr "webserver upload-mappe"
+msgid "Browse your computer:"
+msgstr "Gennemse din computer"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2917
+#, php-format
+msgid "Select from the web server upload directory %s :"
+msgstr "Vælg fra %s - webserverens upload-mappe"
+
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Mappen du har sat til upload-arbejde kan ikke findes"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
-msgstr ""
+msgstr "Der er ikke nogen filer at uploade"
#: libraries/config.values.php:45 libraries/config.values.php:47
#: libraries/config.values.php:51
msgid "Both"
-msgstr ""
+msgstr "Begge"
#: libraries/config.values.php:47
msgid "Nowhere"
-msgstr ""
+msgstr "Ingen steder"
#: libraries/config.values.php:47
msgid "Left"
-msgstr ""
+msgstr "Venstre"
#: libraries/config.values.php:47
msgid "Right"
-msgstr ""
+msgstr "Højre"
#: libraries/config.values.php:75
msgid "Open"
-msgstr ""
+msgstr "Åben"
#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
msgid "Closed"
-msgstr "Ikke-lukket quote"
+msgstr "Lukket"
#: libraries/config.values.php:96 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:121 libraries/export/texytext.php:23
#: libraries/import.lib.php:1172
msgid "structure"
-msgstr ""
+msgstr "struktur"
#: libraries/config.values.php:97 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
@@ -2379,109 +2311,104 @@ msgstr "Struktur og data"
#: libraries/config.values.php:100
msgid "Quick - display only the minimal options to configure"
-msgstr ""
+msgstr "Hurtig - vis kun de mest nødvendige konfigurationsmuligheder"
#: libraries/config.values.php:101
msgid "Custom - display all possible options to configure"
-msgstr ""
+msgstr "Brugerdefineret - vis alle valgmuligheder for konfigurering"
#: libraries/config.values.php:102
msgid "Custom - like above, but without the quick/custom choice"
msgstr ""
+"Brugerdefineret - som ovenfor, men uden valgmuligheder for hurtig/"
+"brugerdefineret"
#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
msgid "complete inserts"
-msgstr "Komplette inserts"
+msgstr "Komplette indsættelser"
#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
msgid "extended inserts"
-msgstr "Udvidede inserts"
+msgstr "Udvidede indsættelser"
#: libraries/config.values.php:122
msgid "both of the above"
-msgstr ""
+msgstr "Begge de ovenfor anførte"
#: libraries/config.values.php:123
msgid "neither of the above"
-msgstr ""
+msgstr "Ingen af de ovenfor anførte"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
msgid "Not a positive number"
-msgstr ""
+msgstr "Ikke et positivt tal"
#: libraries/config/FormDisplay.class.php:84
#: libraries/config/validate.lib.php:435
msgid "Not a non-negative number"
-msgstr ""
+msgstr "Ikke et ikke-negativt tal"
#: libraries/config/FormDisplay.class.php:85
#: libraries/config/validate.lib.php:409
msgid "Not a valid port number"
-msgstr ""
+msgstr "Ikke et gyldigt port-nummer"
#: libraries/config/FormDisplay.class.php:86
#: libraries/config/FormDisplay.class.php:574
#: libraries/config/validate.lib.php:360 libraries/config/validate.lib.php:450
msgid "Incorrect value"
-msgstr ""
+msgstr "Ukorrekt værdi"
#: libraries/config/FormDisplay.class.php:87
#: libraries/config/validate.lib.php:464
#, php-format
msgid "Value must be equal or lower than %s"
-msgstr ""
+msgstr "Værdien skal være mindre end eller lig med %s"
#: libraries/config/FormDisplay.class.php:538
#, php-format
msgid "Missing data for %s"
-msgstr ""
+msgstr "Manglende data for %s"
#: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740
-#, fuzzy
-#| msgid "Variable"
msgid "unavailable"
-msgstr "Variabel"
+msgstr "ikke tilgængelig"
#: libraries/config/FormDisplay.class.php:737
#: libraries/config/FormDisplay.class.php:741
#, php-format
msgid "\"%s\" requires %s extension"
-msgstr ""
+msgstr "\"%s\" er afhængig af udvidelsen %s"
#: libraries/config/FormDisplay.class.php:755
#, php-format
msgid "import will not work, missing function (%s)"
-msgstr ""
+msgstr "importeringen kommer ikke til at fungere, funktionen (%s) mangler"
#: libraries/config/FormDisplay.class.php:759
#, php-format
msgid "export will not work, missing function (%s)"
-msgstr ""
+msgstr "eksporten kommer ikke til at fungere, funktionen (%s) mangler"
#: libraries/config/FormDisplay.class.php:766
msgid "SQL Validator is disabled"
-msgstr ""
+msgstr "SQL Validator er deaktiveret"
#: libraries/config/FormDisplay.class.php:773
-#, fuzzy
-#| msgid "Link not found"
msgid "SOAP extension not found"
-msgstr "Link ikke fundet"
+msgstr "SOAP-udvidelse ikke fundet"
#: libraries/config/FormDisplay.class.php:781
#, php-format
msgid "maximum %s"
-msgstr ""
+msgstr "maksimum %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
msgstr ""
+"Denne indstilling er deaktiveret og din konfiguration vil ikke anvende den"
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
@@ -2491,16 +2418,16 @@ msgstr "Slået fra"
#: libraries/config/FormDisplay.tpl.php:248
#, php-format
msgid "Set value: %s"
-msgstr ""
+msgstr "Indstil værdien %s"
#: libraries/config/FormDisplay.tpl.php:253
#: libraries/config/messages.inc.php:356
msgid "Restore default value"
-msgstr ""
+msgstr "Gendan standardværdi"
#: libraries/config/FormDisplay.tpl.php:269
msgid "Allow users to customize this value"
-msgstr ""
+msgstr "Tillad brugerdefinerede indstillinger for værdien"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
@@ -2510,22 +2437,22 @@ msgstr "Nulstil"
#: libraries/config/messages.inc.php:17
msgid "Improves efficiency of screen refresh"
-msgstr ""
+msgstr "Forbedrer ydeevnen for skærmopdatering"
#: libraries/config/messages.inc.php:18
-#, fuzzy
-#| msgid "Enabled"
msgid "Enable Ajax"
-msgstr "Slået til"
+msgstr "Aktivér Ajax"
#: libraries/config/messages.inc.php:19
msgid ""
"If enabled user can enter any MySQL server in login form for cookie auth"
msgstr ""
+"Aktivering medfører, at brugeren kan tilgå en hvilken som helst MySQL-server "
+"fra log ind-siden ved cookie-godkendelse"
#: libraries/config/messages.inc.php:20
msgid "Allow login to any MySQL server"
-msgstr ""
+msgstr "Tillad log ind til en hvilken som helst MySQL-server"
#: libraries/config/messages.inc.php:21
msgid ""
@@ -2533,46 +2460,53 @@ msgid ""
"inside a frame, and is a potential [strong]security hole[/strong] allowing "
"cross-frame scripting attacks"
msgstr ""
+"Aktivering indebærer, at en side, som ligger på et andet domæne, har adgang "
+"til at kalde phpMyAdmin fra en frame. Det er en potentiel sikkerhedsrisiko, "
+"fordi det åbner op for cross-frame skripting angreb"
#: libraries/config/messages.inc.php:22
msgid "Allow third party framing"
-msgstr ""
+msgstr "Tillad rammeværk fra tredjepart"
#: libraries/config/messages.inc.php:23
msgid "Show "Drop database" link to normal users"
-msgstr ""
+msgstr "Vis linket "Drop database" til almindelige brugere"
#: libraries/config/messages.inc.php:24
msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
+"Hemmeligt kodeordsudtryk til kryptering af cookies ved [kbd]cookie[/kbd] "
+"godkendelse"
#: libraries/config/messages.inc.php:25
msgid "Blowfish secret"
-msgstr ""
+msgstr "Blowfish hemmelighed"
#: libraries/config/messages.inc.php:26
msgid "Highlight selected rows"
-msgstr ""
+msgstr "Fremhæv valgte rækker"
#: libraries/config/messages.inc.php:27
msgid "Row marker"
-msgstr ""
+msgstr "Rækkemarkør"
#: libraries/config/messages.inc.php:28
msgid "Highlight row pointed by the mouse cursor"
-msgstr ""
+msgstr "Fremhæv den række, som musemarkøren peger på"
#: libraries/config/messages.inc.php:29
msgid "Highlight pointer"
-msgstr ""
+msgstr "Fremhæv pointer"
#: libraries/config/messages.inc.php:30
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
+"Aktivér komprimering af [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] ved "
+"import -og eksport arbejdsgange"
#: libraries/config/messages.inc.php:31
msgid "Bzip2"
@@ -2584,173 +2518,179 @@ msgid ""
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
+"Definerer typen af redigeringskontroller som skal anvendes i CHAR -og "
+"VARCHAR-kolonner. [kbd]input[/kbd] - tillader begrænsning i længden af "
+"input, [kbd]textarea[/kbd] - tillader linjeskift i kolonner"
#: libraries/config/messages.inc.php:33
msgid "CHAR columns editing"
-msgstr ""
+msgstr "Redigering af CHAR-kolonner"
#: libraries/config/messages.inc.php:34
msgid "Number of columns for CHAR/VARCHAR textareas"
-msgstr ""
+msgstr "Bredde på CHAR/VARCHAR tekstbokse"
#: libraries/config/messages.inc.php:35
msgid "CHAR textarea columns"
-msgstr ""
+msgstr "Bredde på tekstbokse"
#: libraries/config/messages.inc.php:36
msgid "Number of rows for CHAR/VARCHAR textareas"
-msgstr ""
+msgstr "Højde på CHAR/VARCHAR-tekstbokse"
#: libraries/config/messages.inc.php:37
msgid "CHAR textarea rows"
-msgstr ""
+msgstr "Højde på CHAR-tekstbokse"
#: libraries/config/messages.inc.php:38
msgid "Check config file permissions"
-msgstr ""
+msgstr "Tjek tilladelser på konfigurationsfil"
#: libraries/config/messages.inc.php:39
msgid ""
"Compress gzip/bzip2 exports on the fly without the need for much memory; if "
"you encounter problems with created gzip/bzip2 files disable this feature"
msgstr ""
+"Pak gzip/bzip2-eksporter under eksporten uden behov for ret meget "
+"hukommelse. Hvis du får problemer med de dannede gzip/bzip2-filer, så "
+"deaktivér denne funktion"
#: libraries/config/messages.inc.php:40
msgid "Compress on the fly"
-msgstr ""
+msgstr "Komprimér undervejs"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
#: setup/frames/index.inc.php:165
msgid "Configuration file"
-msgstr ""
+msgstr "Konfigurationsfil"
#: libraries/config/messages.inc.php:42
msgid ""
"Whether a warning ("Are your really sure...") should be displayed "
"when you're about to lose data"
msgstr ""
+"Hvorvidt der skal vises en advarsel ("Er du helt sikker...") , når "
+"du er ved at miste data"
#: libraries/config/messages.inc.php:43
msgid "Confirm DROP queries"
-msgstr ""
+msgstr "Bekræft DROP-forespørgsler"
#: libraries/config/messages.inc.php:44
msgid "Debug SQL"
-msgstr ""
+msgstr "Ret fejl i SQL"
#: libraries/config/messages.inc.php:45
-#, fuzzy
-#| msgid "Relational schema"
msgid "Default display direction"
-msgstr "Relationel skematik"
+msgstr "Standardretning for visning"
#: libraries/config/messages.inc.php:46
msgid ""
"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates "
"maximum number for which vertical model is used"
msgstr ""
+"[kbd]horisontal[/kbd], [kbd]vertikal[/kbd] eller et tal, som angiver "
+"maksimum for den anvendte vertikale model"
#: libraries/config/messages.inc.php:47
msgid "Display direction for altering/creating columns"
-msgstr ""
+msgstr "Vis retning for kolonner, som redigeres/oprettes"
#: libraries/config/messages.inc.php:48
msgid "Tab that is displayed when entering a database"
-msgstr ""
+msgstr "Fane der skal vises, når man går ind i en database"
#: libraries/config/messages.inc.php:49
msgid "Default database tab"
-msgstr ""
+msgstr "Standard database-fane"
#: libraries/config/messages.inc.php:50
msgid "Tab that is displayed when entering a server"
-msgstr ""
+msgstr "Fane, som skal vises, når man går ind på en server"
#: libraries/config/messages.inc.php:51
msgid "Default server tab"
-msgstr ""
+msgstr "Standard server-fane"
#: libraries/config/messages.inc.php:52
msgid "Tab that is displayed when entering a table"
-msgstr ""
+msgstr "Fane som skal vises, når man går ind i en tabel"
#: libraries/config/messages.inc.php:53
msgid "Default table tab"
-msgstr ""
+msgstr "Standard tabel-fane"
#: libraries/config/messages.inc.php:54
msgid "Show binary contents as HEX by default"
-msgstr ""
+msgstr "Som standard vises binært indhold som HEX"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
-msgstr ""
+msgstr "Vis binært indhold som HEX"
#: libraries/config/messages.inc.php:56
msgid "Show database listing as a list instead of a drop down"
-msgstr ""
+msgstr "Vis databaser på en liste i stedet for i en valgboks"
#: libraries/config/messages.inc.php:57
msgid "Display databases as a list"
-msgstr ""
+msgstr "Vis databaser på en liste"
#: libraries/config/messages.inc.php:58
msgid "Show server listing as a list instead of a drop down"
-msgstr ""
+msgstr "Vis servere på en liste i stedet for i en valgboks"
#: libraries/config/messages.inc.php:59
msgid "Display servers as a list"
-msgstr ""
+msgstr "Vis servere på en liste"
#: libraries/config/messages.inc.php:60
msgid ""
"Disable the table maintenance mass operations, like optimizing or repairing "
"the selected tables of a database."
msgstr ""
+"Deaktivér masseoperationer for tabelvedligeholdelse såsom optimering eller "
+"reperation af tabllerne i en database"
#: libraries/config/messages.inc.php:61
-#, fuzzy
-#| msgid "Table maintenance"
msgid "Disable multi table maintenance"
-msgstr "Tabelvedligeholdelse"
+msgstr "Deaktivér vedligeholdelse af flere tabeller"
#: libraries/config/messages.inc.php:62
msgid "Edit SQL queries in popup window"
-msgstr ""
+msgstr "Redigér SQL-forespørgsler i et popup vindue"
#: libraries/config/messages.inc.php:63
-#, fuzzy
-#| msgid "Edit next row"
msgid "Edit in window"
-msgstr "Redigér næste række"
+msgstr "Redigér i et vindue"
#: libraries/config/messages.inc.php:64
-#, fuzzy
-#| msgid "Display Features"
msgid "Display errors"
-msgstr "Vis muligheder"
+msgstr "Vis fejl"
#: libraries/config/messages.inc.php:65
msgid "Gather errors"
-msgstr ""
+msgstr "Indsaml fejl"
#: libraries/config/messages.inc.php:66
msgid "Show icons for warning, error and information messages"
-msgstr ""
+msgstr "Vis ikoner i advarsels-, fejl-, og informationsmeddelelser"
#: libraries/config/messages.inc.php:67
msgid "Iconic errors"
-msgstr ""
+msgstr "Ikon-fejl"
#: libraries/config/messages.inc.php:68
msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
msgstr ""
+"Bestem antallet af sekunder, som et skript må være om at køre ([kbd]0[/kbd] "
+"er lig med ingen tidsgrænse"
#: libraries/config/messages.inc.php:69
msgid "Maximum execution time"
-msgstr ""
+msgstr "Maksimal ekspeditionstid"
#: libraries/config/messages.inc.php:70 prefs_manage.php:299
msgid "Save as file"
@@ -2758,7 +2698,7 @@ msgstr "Send (download)"
#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239
msgid "Character set of the file"
-msgstr ""
+msgstr "Filens tegnsæt"
#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88
#: tbl_printview.php:373 tbl_structure.php:831
@@ -2786,10 +2726,8 @@ msgstr "Indsæt feltnavne i første række"
#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241
#: libraries/config/messages.inc.php:248 libraries/import/csv.php:75
#: libraries/import/ldi.php:41
-#, fuzzy
-#| msgid "Fields enclosed by"
msgid "Columns enclosed by"
-msgstr "Felter indrammet med"
+msgstr "Felter skal adskilles med"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242
#: libraries/config/messages.inc.php:249 libraries/import/csv.php:80
@@ -2809,15 +2747,13 @@ msgstr "Erstat NULL med"
#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84
msgid "Remove CRLF characters within columns"
-msgstr ""
+msgstr "Fjern karakterer for linjeskift i felterne"
#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245
#: libraries/config/messages.inc.php:253 libraries/import/csv.php:62
#: libraries/import/ldi.php:40
-#, fuzzy
-#| msgid "Lines terminated by"
msgid "Columns terminated by"
-msgstr "Linjer afsluttet med"
+msgstr "Felter afsluttes med"
#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240
#: libraries/import/csv.php:85 libraries/import/ldi.php:43
@@ -2832,25 +2768,23 @@ msgstr "Excel-udgave"
#: libraries/config/messages.inc.php:85
msgid "Database name template"
-msgstr ""
+msgstr "Skabelon for databasenavn"
#: libraries/config/messages.inc.php:86
msgid "Server name template"
-msgstr ""
+msgstr "Maske for servernavn"
#: libraries/config/messages.inc.php:87
msgid "Table name template"
-msgstr ""
+msgstr "Maske for tabelnavn"
#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104
#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137
#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:23
#: libraries/export/latex.php:39 libraries/export/odt.php:31
#: libraries/export/sql.php:115 libraries/export/texytext.php:22
-#, fuzzy
-#| msgid "%s table(s)"
msgid "Dump table"
-msgstr "%s tabel(ler)"
+msgstr "Dump tabel"
#: libraries/config/messages.inc.php:92 libraries/export/latex.php:31
msgid "Include table caption"
@@ -2889,7 +2823,7 @@ msgstr "Eksporttype"
#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116
msgid "Save on server"
-msgstr ""
+msgstr "Gem på server"
#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117
#: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221
@@ -2898,13 +2832,11 @@ msgstr "Overskriv eksisterende fil(er)"
#: libraries/config/messages.inc.php:118
msgid "Remember file name template"
-msgstr ""
+msgstr "Husk maske for filnavn"
#: libraries/config/messages.inc.php:120
-#, fuzzy
-#| msgid "Enclose table and field names with backquotes"
msgid "Enclose table and column names with backquotes"
-msgstr "Brug \"backquotes\" omkring tabeller og felters navne"
+msgstr "Brug \"backquotes\" omkring tabel -og feltnavne"
#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260
#: libraries/display_export.lib.php:353
@@ -2913,7 +2845,7 @@ msgstr "SQL-kompatibilitetsmodus"
#: libraries/config/messages.inc.php:122 libraries/export/sql.php:175
msgid "CREATE TABLE options:"
-msgstr ""
+msgstr "Muligheder for CREATE TABLE:"
#: libraries/config/messages.inc.php:123
msgid "Creation/Update/Check dates"
@@ -2937,17 +2869,15 @@ msgstr "Brug ignorér inserts"
#: libraries/config/messages.inc.php:132
msgid "Syntax to use when inserting data"
-msgstr ""
+msgstr "Syntaks som skal bruges, når der indsættes data"
#: libraries/config/messages.inc.php:133 libraries/export/sql.php:267
msgid "Maximal length of created query"
msgstr "Maksimal længde på oprettet forespørgsel"
#: libraries/config/messages.inc.php:138
-#, fuzzy
-#| msgid "Export"
msgid "Export type"
-msgstr "Eksport"
+msgstr "Eksporttype"
#: libraries/config/messages.inc.php:139 libraries/export/sql.php:70
msgid "Enclose export in a transaction"
@@ -2955,50 +2885,50 @@ msgstr "Inkludér eksport i en transaktion"
#: libraries/config/messages.inc.php:140
msgid "Export time in UTC"
-msgstr ""
+msgstr "Angiv eksporteringstidspunktet i UTC (Universal Time Coordinated)"
#: libraries/config/messages.inc.php:148
msgid "Force secured connection while using phpMyAdmin"
-msgstr ""
+msgstr "Gennemtving sikker forbindelse mens phpMyAdmin bruges"
#: libraries/config/messages.inc.php:149
msgid "Force SSL connection"
-msgstr ""
+msgstr "Gennemtving SSL-forbindelse"
#: libraries/config/messages.inc.php:150
msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
+"Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; [kbd]"
+"content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
-msgstr ""
+msgstr "Sortër fremmede nøgler i valgboks på:"
#: libraries/config/messages.inc.php:152
msgid "A dropdown will be used if fewer items are present"
-msgstr ""
+msgstr "Der vil blive brugt en valgboks, hvis der er færre elementer til stede"
#: libraries/config/messages.inc.php:153
msgid "Foreign key limit"
-msgstr ""
+msgstr "Øvre grænse for fremmed nøgle"
#: libraries/config/messages.inc.php:154
msgid "Browse mode"
-msgstr ""
+msgstr "Gennemsynstilstand"
#: libraries/config/messages.inc.php:155
msgid "Customize browse mode"
-msgstr ""
+msgstr "Brugerindstilling for gennemsynstilstand"
#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159
#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187
#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217
#: libraries/config/messages.inc.php:229
-#, fuzzy
-#| msgid "Query results operations"
msgid "Customize default options"
-msgstr "Forespørgselsresultat operationer"
+msgstr "Tilpas standardindstillinger"
#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:236
#: libraries/config/setup.forms.php:315
@@ -3010,42 +2940,40 @@ msgstr "CSV (kommasepareret)"
#: libraries/config/messages.inc.php:160
msgid "Developer"
-msgstr ""
+msgstr "Udvikler"
#: libraries/config/messages.inc.php:161
msgid "Settings for phpMyAdmin developers"
-msgstr ""
+msgstr "Indstillinger for phpMyAdmin udviklere"
#: libraries/config/messages.inc.php:162
msgid "Edit mode"
-msgstr ""
+msgstr "Redigeringstilstand"
#: libraries/config/messages.inc.php:163
msgid "Customize edit mode"
-msgstr ""
+msgstr "Tilpas redigerinstilstand"
#: libraries/config/messages.inc.php:165
msgid "Export defaults"
-msgstr ""
+msgstr "Standardindstillinger for eksport"
#: libraries/config/messages.inc.php:166
msgid "Customize default export options"
-msgstr ""
+msgstr "Tilpas standardindstillinger for eksport"
#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209
#: setup/frames/menu.inc.php:16
msgid "Features"
-msgstr ""
+msgstr "Karakteristika"
#: libraries/config/messages.inc.php:168
-#, fuzzy
-#| msgid "Generate"
msgid "General"
-msgstr "Generér"
+msgstr "Generelt"
#: libraries/config/messages.inc.php:169
msgid "Set some commonly used options"
-msgstr ""
+msgstr "Bestem indstillinger for nogle af de mest anvendte valgmuligheder"
#: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:82
@@ -3055,19 +2983,21 @@ msgstr "Import"
#: libraries/config/messages.inc.php:171
msgid "Import defaults"
-msgstr ""
+msgstr "Standarder for import"
#: libraries/config/messages.inc.php:172
msgid "Customize default common import options"
-msgstr ""
+msgstr "Tilpas standardindstillinger for import"
#: libraries/config/messages.inc.php:173
msgid "Import / export"
-msgstr ""
+msgstr "Import / eksport"
#: libraries/config/messages.inc.php:174
msgid "Set import and export directories and compression options"
msgstr ""
+"Bestem indstillinger for importerings- og eksporteringsmapper samt "
+"komprimering"
#: libraries/config/messages.inc.php:175 libraries/export/latex.php:26
msgid "LaTeX"
@@ -3075,15 +3005,15 @@ msgstr "LaTeX"
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
-msgstr ""
+msgstr "Indstillinger for visning af databaser"
#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18
msgid "Navigation frame"
-msgstr ""
+msgstr "Navigationsramme"
#: libraries/config/messages.inc.php:180
msgid "Customize appearance of the navigation frame"
-msgstr ""
+msgstr "Tilpas navigationsrammens udseende"
#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:42
#: setup/frames/index.inc.php:110
@@ -3092,15 +3022,15 @@ msgstr "Servere"
#: libraries/config/messages.inc.php:182
msgid "Servers display options"
-msgstr ""
+msgstr "Indstillinger for visning af servere"
#: libraries/config/messages.inc.php:184
msgid "Tables display options"
-msgstr ""
+msgstr "Indstillinger for visning af tabeller"
#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19
msgid "Main frame"
-msgstr ""
+msgstr "Hovedramme"
#: libraries/config/messages.inc.php:186
msgid "Microsoft Office"
@@ -3114,24 +3044,22 @@ msgstr "Open Document tekst"
#: libraries/config/messages.inc.php:190
msgid "Other core settings"
-msgstr ""
+msgstr "Andre kerneindstillinger"
#: libraries/config/messages.inc.php:191
msgid "Settings that didn't fit enywhere else"
-msgstr ""
+msgstr "Indstillinger som ikke passer ind andre steder"
#: libraries/config/messages.inc.php:192
-#, fuzzy
-#| msgid "Page number:"
msgid "Page titles"
-msgstr "Side nummer:"
+msgstr "Sidetitler"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to [a@Documentation."
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
"get special values."
-msgstr ""
+msgstr "Angiv browserens titeltekst. "
#: libraries/config/messages.inc.php:194
#: libraries/navigation_header.inc.php:83
@@ -3142,49 +3070,51 @@ msgstr "Foresp. vindue"
#: libraries/config/messages.inc.php:195
msgid "Customize query window options"
-msgstr ""
+msgstr "Tilpas indstillinger for forespørgselsvindue"
#: libraries/config/messages.inc.php:196
msgid "Security"
-msgstr ""
+msgstr "Sikkerhed"
#: libraries/config/messages.inc.php:197
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL"
msgstr ""
+"Bemærk venligst at phpMyAdmin blot er en brugerflade, hvis egenskaber ikke "
+"begrænser MySQL"
#: libraries/config/messages.inc.php:198
msgid "Basic settings"
-msgstr ""
+msgstr "Grundlæggende indstillinger"
#: libraries/config/messages.inc.php:199
-#, fuzzy
-#| msgid "Documentation"
msgid "Authentication"
-msgstr "Dokumentation"
+msgstr "Godkendelse"
#: libraries/config/messages.inc.php:200
msgid "Authentication settings"
-msgstr ""
+msgstr "Indstillinger for godkendelse"
#: libraries/config/messages.inc.php:201
msgid "Server configuration"
-msgstr ""
+msgstr "Serverkonfiguration"
#: libraries/config/messages.inc.php:202
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for"
msgstr ""
+"Avanceret serverkonfiguration. Lad være med at ændre disse indstillinger med "
+"mindre, du ved, hvad de betyder"
#: libraries/config/messages.inc.php:203
msgid "Enter server connection parameters"
-msgstr ""
+msgstr "Indtast parametre for tilslutning til server"
#: libraries/config/messages.inc.php:204
msgid "Configuration storage"
-msgstr ""
+msgstr "Lagring af konfiguration"
#: libraries/config/messages.inc.php:205
msgid ""
@@ -4639,7 +4569,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegier"
@@ -4651,7 +4581,7 @@ msgstr "Rutiner"
msgid "Return type"
msgstr "Retur type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4864,9 +4794,9 @@ msgstr "Tegnsæt for filen:"
msgid "Compression:"
msgstr "Komprimering"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Ingen"
@@ -5017,39 +4947,57 @@ msgstr ""
msgid "Language"
msgstr "Sprog"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Tilføj/Slet felt-kolonne"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d er ikke et gyldigt rækkenummer."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "rækker startende fra post #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "vandret"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horisontalt (roterede overskrifter)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "lodret"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s og gentag overskrifter efter %s celler"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sorteringsnøgle"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5062,102 +5010,102 @@ msgstr "Sorteringsnøgle"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Indstillinger"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Delvise tekster"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Komplette tekster"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relationel skematik"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Rækken er slettet!"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Dræb (Kill)"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "i forespørgsel"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Viser poster "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Forepørgsel tog %01.4f sek"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ændre"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Forespørgselsresultat operationer"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Udskrift-visning (med fulde tekster)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Vis PDF-skematik"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Opret"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link ikke fundet"
@@ -5205,7 +5153,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -5686,7 +5634,7 @@ msgstr "Tilgængelige MIME-typer"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Vært"
@@ -5895,7 +5843,7 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Genereret af"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6055,7 +6003,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Ingen ændring"
@@ -6384,14 +6332,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Værdi"
@@ -6631,20 +6579,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binær log"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variabler"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Tegnsæt"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Lagre"
@@ -6691,11 +6639,11 @@ msgstr ""
msgid "Columns"
msgstr "Kolonnenavne"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Lav bogmærke til denne SQL-forespørgsel"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Lad alle brugere bruge dette bogmærke"
@@ -6935,7 +6883,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Tilføj en ny bruger"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tid"
@@ -7177,7 +7125,7 @@ msgid "Protocol version"
msgstr "Protokolversion"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Bruger"
@@ -7457,7 +7405,7 @@ msgstr "Opret"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operatør"
@@ -7654,17 +7602,17 @@ msgstr "Tabellen \"%s\" findes ikke!"
msgid "Select binary log to view"
msgstr "Vælg binærlog til gennemsyn"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Trunkér viste forespørgsler"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Vis fuldstændige forespørgsler"
@@ -8197,7 +8145,7 @@ msgstr "Privilegierne blev korrekt genindlæst."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8334,206 +8282,193 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Opdatér"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "i brug"
+msgstr[1] "i brug"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "pr. sekund"
+msgstr[1] "pr. sekund"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråd %s blev stoppet."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Handler"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Forespørgsel-mellemlager"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Tråde"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Forsinkede inserts"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Nøglemellemlager (key cache)"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Joins"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Transaktionskoordinator"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Flush (luk) alle tabeller"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Vis åbne tabeller"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Vis slaveværter"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Flush forespørgsel-mellemlager (query cache)"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Runtime-information"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Server valg"
-#: server_status.php:368
-#, fuzzy
-#| msgid "Databases statistics"
-msgid "Query statistics"
-msgstr "Databasestatistik"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Opdatér"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "pr. sekund"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "pr. sekund"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "i brug"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Kodeord må ikke ændres"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Vis åbne tabeller"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relationer"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "pr. time"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "pr. minut"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "pr. sekund"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Forespørgselstype"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Denne MySQL-server har kørt i %s. Den startede op den %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8541,45 +8476,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Modtaget"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Forbindelser"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "maks. samtidige forbindelser"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Mislykkede forsøg"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Afbrudt"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processer"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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 "Antallet af fsyncs skrivninger lavet til log filen."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8589,17 +8520,17 @@ msgstr ""
"overskred værdien for binlog_cache_size og brugte en midlertidig fil til at "
"gemme statements fra transaktionen."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8611,11 +8542,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Hvor mange midlertidige filer mysqld har oprettet."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8623,7 +8554,7 @@ msgstr ""
"Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren "
"under udførelse af statements."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8631,7 +8562,7 @@ msgstr ""
"Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke "
"der opstod fejl (sandsynligvis dublerede nøgler)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8639,23 +8570,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Antallet af INSERT DELAYED rækker skrevet."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Antallet af udførte FLUSH statements."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Antallet af interne COMMIT statements."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8665,7 +8596,7 @@ msgstr ""
"tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer "
"antallet af gange tabeller er blevet opdaget."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8675,7 +8606,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:855
+#: server_status.php:864
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."
@@ -8684,7 +8615,7 @@ msgstr ""
"er høj, er det en god indikation af at dine forespørgsler og tabeller er "
"ordentligt indekserede."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8694,7 +8625,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8702,7 +8633,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:858
+#: server_status.php:867
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 "
@@ -8714,7 +8645,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:859
+#: server_status.php:868
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 "
@@ -8726,35 +8657,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Antallet af interne ROLLBACK statements."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antallet af sider der indeholder data (beskidte eller rene)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Antallet af såkaldt beskidte sider."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Antallet af frie sider."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8764,7 +8695,7 @@ msgstr ""
"sider der i øjeblikket læses eller skrives eller som ikke kan flushes eller "
"fjernes af andre årsager."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8776,11 +8707,11 @@ msgstr ""
"også beregnes som Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total størrelse på buffer pool, i sider."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8789,7 +8720,7 @@ msgstr ""
"forespørgsel skal scanne en større del af en tabel men i tilfældig "
"rækkefølge."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8797,11 +8728,11 @@ msgstr ""
"Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når "
"InnoDB laver en sekventiel fuld tabelscanning."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Antallet af logiske read anmodninger InnoDB har lavet."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8809,7 +8740,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:874
+#: server_status.php:883
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 "
@@ -8823,55 +8754,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antallet af skrivninger til InnoDB buffer poolen."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Antallet af fsync() operationer indtil nu."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Nuværende antal ventende fsync() operationer."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Nuværende antal af ventende reads."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Nuværende antal af ventende writes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Mængden af data læst indtil nu, i bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Det totale antal af data reads."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Det totale antal af data writes."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Mængden af data skrevet indtil nu, i bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8879,35 +8810,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Antallet af log write anmodninger."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Antallet af fysiske skrivninger til log filen."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Antallet af fsyncs skrivninger lavet til log filen."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Antallet af ventende log fil fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Ventende log fil skrivninger."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Antallet af bytes skrevet til log filen."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Antallet af sider oprettet."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8915,51 +8846,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Antallet af sider læst."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Antallet af sider skrevet."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Antallet af rækkelåse der ventes på i øjeblikket."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antallet af rækker slettet fra InnoDB tabeller."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antallet af rækker indsat i InnoDB tabeller."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Antallet af rækker læst fra InnoDB tables."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Antallet af rækker opdateret i InnoDB tabeller."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8968,7 +8899,7 @@ msgstr ""
"endnu ikke er blevet flushet til disk. Det hed tidligere "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8976,7 +8907,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:908
+#: server_status.php:917
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 "
@@ -8986,11 +8917,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9000,15 +8931,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9020,18 +8951,18 @@ msgstr ""
"standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler "
"endnu."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9039,38 +8970,38 @@ msgstr ""
"Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er "
"dit tabelmellemlager sandsynligvis for lille."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Antallet af filer der er åbne."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Antallet af tabeller der er åbne."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Antallet af mellemlager hits."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Antallet af forespørgsler tilføjet til mellemlageret."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9083,7 +9014,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9091,19 +9022,19 @@ msgstr ""
"Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre "
"eller ikke mellemlagret grundet query_cache_type indstillingen)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Antallet af forespørgsler registreret i mellemlageret."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Totalt antal blokke i forespørgsels-mellemlageret."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status på failsafe replikering (endnu ikke implementeret)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9111,11 +9042,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9123,7 +9054,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9131,15 +9062,15 @@ msgstr ""
"Antallet af joins der brugte ranges på den første tabel. (Normalt ikke "
"kritisk selvom tallet er stort.)"
-#: server_status.php:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9147,12 +9078,12 @@ msgstr ""
"Totalt (siden opstart) antal gange replikeringsslave SQL tråden har gen-"
"forsøgt transaktioner."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9160,13 +9091,13 @@ msgstr ""
"Antallet af tråde der har taget mere end slow_launch_time sekunder at "
"oprette."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9176,23 +9107,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Antallet af sorteringer lavet med ranges."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Antallet af sorterede rækker."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9204,7 +9135,7 @@ msgstr ""
"optimere dine forespørgsler, og derefter enten opdele din tabel eller "
"tabeller, eller bruge replikering."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9214,11 +9145,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Antallet af i øjeblikket åbne forbindelser."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9230,7 +9161,7 @@ msgstr ""
"(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god "
"tråd-implementering.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Antallet af tråde der ikke sover."
@@ -9353,7 +9284,7 @@ msgstr "Server-variabler og indstillinger"
msgid "Session value"
msgstr "Sessionsværdi"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Global værdi"
@@ -9627,41 +9558,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Bladre i fremmedværdier"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Viser som PHP-kode"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Viser SQL-forespørgsel"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validér SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene på tabel `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Mærke"
@@ -10046,25 +9977,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Ingen rækker valgt"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Vælg mindst eet felt:"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Tilføj søgekriterier (kroppen af \"WHERE\" sætningen):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "poster pr. side"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Rækkefølge af visning:"
@@ -10359,8 +10290,12 @@ msgstr "VIEW navn"
msgid "Rename view to"
msgstr ""
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Layout"
+
+#~ msgid "seconds"
+#~ msgstr "pr. sekund"
+
#~ msgid "Query results"
#~ msgstr "Forespørgselsresultat operationer"
@@ -10374,8 +10309,6 @@ msgstr ""
#~ msgid "Show processes"
#~ msgstr "Vis tråde"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Nulstil"
@@ -10394,32 +10327,20 @@ msgstr ""
#~ "Forespørgselsstatistikker : Siden opstarten er der blevet sendt %s "
#~ "forespørgsler til serveren."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Privilegierne blev korrekt genindlæst."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Kan være anslået. Se FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Forespørgselstype"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Tilføj en ny bruger"
-#, fuzzy
-#~| msgid "Create"
#~ msgid "Create User"
#~ msgstr "Opret"
diff --git a/po/de.po b/po/de.po
index 12b8b92122..e76f7c29d8 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
"Last-Translator: Dominik Geyer \n"
"Language-Team: german \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Alles anzeigen"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"wurde das Ursprungsfenster geschlossen oder der Browser verhindert den "
"Zugriff aufgrund von Ihren Sicherheitseinstellungen."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Suche"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Suche"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Schlüsselname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Beschreibung"
@@ -137,7 +137,7 @@ msgstr "Tabellen-Kommentar"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Spalte"
@@ -150,7 +150,7 @@ msgstr "Spalte"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -166,7 +166,7 @@ msgstr "Typ"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Verweise"
msgid "Comments"
msgstr "Kommentare"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Kommentare"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nein"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Nein"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Dump (Schema) der Datenbank anzeigen"
msgid "No tables found in database."
msgstr "Es wurden keine Tabellen in der Datenbank gefunden."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Alle auswählen"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Auswahl entfernen"
@@ -271,7 +271,7 @@ msgstr "Datenbank %s wurde nach %s kopiert"
msgid "Rename database to"
msgstr "Datenbank umbenennen in"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Befehl"
@@ -332,7 +332,7 @@ msgstr "Zu kopierter Datenbank wechseln"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Beziehungsschema bearbeiten oder exportieren"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabelle"
@@ -373,7 +373,7 @@ msgstr "Zeilen"
msgid "Size"
msgstr "Größe"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in Benutzung"
@@ -399,7 +399,7 @@ msgstr "Aktualisiert am"
msgid "Last check"
msgstr "Letzter Check am"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "Visueller Builder"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sortierung"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "aufsteigend"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "absteigend"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Zeige"
@@ -460,7 +460,7 @@ msgstr "Entf."
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "oder"
@@ -489,58 +489,58 @@ msgstr "Verwendete Tabellen"
msgid "SQL query on database %s :"
msgstr "SQL-Befehl in der Datenbank %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Zugriff verweigert."
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "mindestens eines der Wörter"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "alle Wörter"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "genau diese Zeichenkette"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "als regulären Ausdruck"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Suchergebnisse für \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s Treffer in der Tabelle %s "
msgstr[1] "%s Treffer in der Tabelle %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Anzeigen"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Treffer für Tabelle %s löschen?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,65 +551,65 @@ msgstr "Treffer für Tabelle %s löschen?"
msgid "Delete"
msgstr "Löschen"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Insgesamt %s Treffer"
msgstr[1] "Insgesamt %s Treffer"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Durchsuche die Datenbank"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Finde:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "In der / den Tabelle(n):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "In Spalte:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Diese Datenbank enthält keine Tabellen."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Die Tabelle %s wurde geleert."
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Die Ansicht %s wurde gelöscht"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Die Tabelle %s wurde gelöscht."
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Tracking ist aktiviert."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Tracking ist nicht aktiviert."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -618,112 +618,112 @@ msgstr ""
"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die "
"%sDokumentation%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Ansicht"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikation"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Gesamt"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "markierte:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Alle auswählen"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Auswahl entfernen"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Tabellen m. Überhang ausw."
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportieren"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Druckansicht"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Leeren"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Löschen"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Überprüfe Tabelle"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimiere Tabelle"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Repariere Tabelle"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analysiere Tabelle"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Gehe zur Tabelle"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Tabelleninhalt ersetzen"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Tabelleninhalt ersetzen"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Strukturverzeichnis"
@@ -738,9 +738,9 @@ msgstr "Verfolgte Tabellen"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Datenbank"
@@ -756,8 +756,8 @@ msgstr "Erstellt"
msgid "Updated"
msgstr "Aktualisiert"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -903,7 +903,7 @@ msgstr "SQL-Abfrage wurde gelöscht."
msgid "Showing bookmark"
msgstr "Bookmark wird angezeigt"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s wurde gespeichert"
@@ -932,7 +932,7 @@ msgstr ""
"nicht die Ausführungszeitbeschränkungen von php gelockert werden."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -958,15 +958,15 @@ msgstr "Zur Auswahl anklicken"
msgid "Click to unselect"
msgstr "Zum Abwählen anklicken"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Die Anweisung \"DROP DATABASE\" wurde deaktiviert."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Möchten Sie wirklich diese Abfrage ausführen "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!"
@@ -1063,166 +1063,208 @@ msgstr "Die ausgewählten Benutzer werden gelöscht"
msgid "Close"
msgstr "Schliesse"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Server Auswählen"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Abfragediagramm anzeigen"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Insgesamt"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Laden"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Bearbeite Anfrage"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Fehler beim Bearbeiten der Anfrage"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Spalte wird gelöscht"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Primärschlüssel wird hinzugefügt"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Datenbanken werden umbenannt."
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Lade Datenbank neu"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Datenbank wird kopiert"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Zeichensatz wird geändert"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Die Tabelle muss mindestens eine Spalte haben"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Erzeuge Tabelle"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Verwendete Tabellen"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Suche"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Suchkriterien ausblenden"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Suchkriterien anzeigen"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Anzeigen"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Lösche %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "SQL-Querybox ausblenden"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "SQL-Querybox anzeigen"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Direkt bearbeiten"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Bearbeiten"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Server Auswählen"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query chart"
+msgid "Live query chart"
+msgstr "Abfragediagramm anzeigen"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Insgesamt"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Server Auswählen"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Prozesse"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Verbindungen"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL-Abfragen"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statistiken abfragen"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Laden"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Bearbeite Anfrage"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Fehler beim Bearbeiten der Anfrage"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Spalte wird gelöscht"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Primärschlüssel wird hinzugefügt"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Datenbanken werden umbenannt."
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Lade Datenbank neu"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Datenbank wird kopiert"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Zeichensatz wird geändert"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Die Tabelle muss mindestens eine Spalte haben"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Erzeuge Tabelle"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Verwendete Tabellen"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Suche"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Suchkriterien ausblenden"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "Suchkriterien anzeigen"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Anzeigen"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Lösche %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "SQL-Querybox ausblenden"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "SQL-Querybox anzeigen"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Direkt bearbeiten"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1231,67 +1273,67 @@ msgid "Save"
msgstr "Speichern"
# Hide heist im deutschen in der EDV ausblenden
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Verstecken"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Suchkriterien ausblenden"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Suchkriterien anzeigen"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorieren"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Wählen Sie den referenzierten Schlüssel"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Wähle Fremdschlüssel"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Anzuzeigende Spalte auswählen"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Option hinzufügen zu Spalte "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Passwort generieren"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generieren"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Passwort ändern"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Mehr"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1301,260 +1343,260 @@ msgstr ""
"sollten. Die neuste Version ist %s, erschienen am %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", aktuellste stabile Version:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Springe zu Datenbank"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Fertig"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Vorherige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Nächste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Heute"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Januar"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Februar"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "März"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "April"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Juni"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Juli"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "August"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "September"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Oktober"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "November"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Dezember"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mrz"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Sonntag"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Montag"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Dienstag"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Mittwoch"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Donnerstag"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Freitag"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Samstag"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Wo"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Stunde"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekunde"
@@ -1649,7 +1691,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Datenbanken"
@@ -1719,25 +1761,25 @@ msgstr "%s wurde auf diesem MySQL-Server deaktiviert."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Dieser MySQL-Server unterstützt %s nicht."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "ungültige Datenbank"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "ungültiger Tabellenname"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabelle %s wurde umbenannt in %s."
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1770,10 +1812,9 @@ msgstr "Oberflächendesign \"%s\" nicht gefunden!"
msgid "Theme path not found for theme %s!"
msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Oberflächendesign"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1783,7 +1824,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen bei %s"
@@ -1941,7 +1981,7 @@ msgstr "freigegeben"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabellen"
@@ -2027,7 +2067,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2075,7 +2114,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-Befehl"
@@ -2083,121 +2122,121 @@ msgstr "SQL-Befehl"
msgid "MySQL said: "
msgstr "MySQL meldet: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Verbindungsaufbau zu SQL-Validator schlug fehl!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL erklären"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL-Erklärung umgehen"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "ohne PHP-Code"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP-Code erzeugen"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Aktualisieren"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL-Validierung umgehen"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL validieren"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Inline-Bearbeiten dieses SQL-Befehls"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Messen"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y um %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Anfang"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Vorherige"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Ende"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Zur Datenbank "%s" springen."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Die Funktion \"%s\" wird durch einen bekannten Fehler beeinträchtigt, siehe "
"%s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2209,41 +2248,41 @@ msgstr ""
msgid "Structure"
msgstr "Struktur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Einfügen"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operationen"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Durchsuchen Sie ihren Computer:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden."
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Es sind keine Dateien zum Upload vorhanden"
@@ -2605,7 +2644,7 @@ msgstr "Standardtab bei Tabellen"
msgid "Show binary contents as HEX by default"
msgstr "Binäre Inhalte standardmäßig hexadezimal anzeigen"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Binäre Inhalte in hexadezimal anzeigen"
@@ -4667,7 +4706,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Rechte"
@@ -4679,7 +4718,7 @@ msgstr "Routinen"
msgid "Return type"
msgstr "Rückgabe-Typ"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4869,9 +4908,9 @@ msgstr "Zeichencodierung der Datei:"
msgid "Compression:"
msgstr "Komprimierung:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "keine"
@@ -5006,37 +5045,57 @@ msgstr "Formatspezifische Optionen:"
msgid "Language"
msgstr "Sprache"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "Textfeldspalten"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Zur Auswahl anklicken"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d ist keine gültige Zeilennummer."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "Datensätze, beginnend ab Reihe #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "untereinander"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (gedrehte Bezeichner)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "nebeneinander"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s angeordnet und wiederhole die Kopfzeilen nach %s Datensätzen."
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Nach Schlüssel sortieren"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5049,92 +5108,92 @@ msgstr "Nach Schlüssel sortieren"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Optionen"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Gekürzte Texte"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Vollständige Texte"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relationaler Schlüssel"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Relationale Anzeigespalte"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Binäre Inhalte anzeigen"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "BLOB Inhalte anzeigen"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Darstellungsumwandlung"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopieren"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Die Zeile wurde gelöscht."
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Beenden"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in der Abfrage"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Zeige Datensätze "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "insgesamt"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "die Abfrage dauerte %01.4f sek."
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ändern"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operationen für das Abfrageergebnis"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Druckansicht (vollständige Textfelder)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Diagramm anzeigen"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Erzeuge View"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Der Verweis wurde nicht gefunden."
@@ -5182,7 +5241,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puffer-Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB-Status"
@@ -5683,7 +5742,7 @@ msgstr "MIME-Typen anzeigen"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5909,7 +5968,7 @@ msgstr "SQL-Abfrageergebnis"
msgid "Generated by"
msgstr "Erstellt von"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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 Zeilen)."
@@ -6080,7 +6139,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Index hinzufügen"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Keine Änderung"
@@ -6418,14 +6477,14 @@ msgid "Slave status"
msgstr "Slave-Status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Wert"
@@ -6653,20 +6712,20 @@ msgid "Synchronize"
msgstr "Gleiche ab"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binäres Protokoll"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variablen"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Zeichensätze"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Formate"
@@ -6712,11 +6771,11 @@ msgstr "Werte löschen"
msgid "Columns"
msgstr "Spalten"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "SQL-Abfrage speichern"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
@@ -6946,7 +7005,7 @@ msgstr "PARTITION Definition"
msgid "+ Add a new value"
msgstr "+ Neuen Wert hinzufügen"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Dauer"
@@ -7152,7 +7211,7 @@ msgid "Protocol version"
msgstr "Protokoll-Version"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Benutzer"
@@ -7425,7 +7484,7 @@ msgstr "Anlegen"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7605,17 +7664,17 @@ msgstr "Datei existiert nicht"
msgid "Select binary log to view"
msgstr "Binäres Protokoll zur Anzeige auswählen"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Dateien"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Zeige die SQL-Abfragen verkürzt an"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Zeige die SQL-Abfragen vollständig an"
@@ -8151,7 +8210,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Zeige den Master-Status"
@@ -8302,12 +8361,34 @@ msgstr ""
"Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. "
"Möchten Sie ihn konfigurieren ?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Aktualisieren"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minute"
+msgstr[1] "Minute"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Sekunde"
+msgstr[1] "Sekunde"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Der Prozess %s wurde erfolgreich abgebrochen."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8315,166 +8396,133 @@ msgstr ""
"phpMyAdmin konnte den Prozess %s nicht abbrechen. Er wurde wahrscheinlich "
"bereits geschlossen."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Handler"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Abfragen-Cache"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Prozesse"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Temporäre Daten"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Verzögertes Einfügen (delayed inserts)"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Schlüssel-Cache"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Tabellenverknüpfungen (joins)"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortierung"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Transaktions-Koordinator"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Alle Tabellen aktualisieren und schließen."
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Zeige alle offenen Tabellen"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Zeige alle Slave-Hosts"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Zeige den Slave-Status"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Den Abfragen-Cache leeren. (FLUSH)"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Laufzeit-Informationen"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Server Auswählen"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Statistiken abfragen"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Die Slave Statustabelle sehen"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Aktualisieren"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekunde"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekunde"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minute"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Passwort nicht verändert"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Zeige alle offenen Tabellen"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Weiterführende Links"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "pro Stunde"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "pro Minute"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "pro Sekunde"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Abfrageart"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Dieser MySQL-Server läuft bereits %s. Er wurde am %s gestartet."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8482,33 +8530,33 @@ msgstr ""
"Dieser MySQL Server arbeitet als Master und Slave im "
"Replikations -Prozess."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Master im Replikations -Prozess."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Slave im Replikations -Prozess."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Für weitere Informationen über den Replikations-Status auf dem Server siehe "
-"Abschnitt Replikation ."
+"Abschnitt Replikation ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Replikations-Status"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Netzwerkverkehr"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8517,45 +8565,41 @@ msgstr ""
"\" (wieder bei 0 beginnen), deshalb können diese Werte, wie sie vom MySQL "
"Server ausgegeben werden, falsch sein."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Empfangen"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Gesendet"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Verbindungen"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. gleichzeitige Verbindungen"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Fehlversuche"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Abgebrochen"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Prozesse"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
#| msgid "Whether to enable SSL for connection to MySQL server."
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "SSL für die MySQL Serververbindung aktivieren."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8565,17 +8609,17 @@ 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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8587,11 +8631,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8599,7 +8643,7 @@ msgstr ""
"Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei "
"der Ausführung von Statements."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8607,7 +8651,7 @@ msgstr ""
"Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen "
"ein Fehler auftrat (z. B. duplicate key)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8615,23 +8659,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Anzahl der ausgeführten FLUSH-Befehle."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Anzahl der Anfragen, ein COMMIT auszuführen."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8641,7 +8685,7 @@ msgstr ""
"kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle "
"kennt. Dieser Vorgang wird "discovery" genannt."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8652,7 +8696,7 @@ msgstr ""
"Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert "
"ist)."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8661,7 +8705,7 @@ msgstr ""
"dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und "
"Tabellen korrekt indiziert sind."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8672,7 +8716,7 @@ msgstr ""
"Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, "
"wenn Sie einen Index-Scan durchführen."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8681,7 +8725,7 @@ msgstr ""
"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung "
"von ORDER BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8694,7 +8738,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:859
+#: server_status.php:868
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 "
@@ -8707,36 +8751,36 @@ msgstr ""
"sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile "
"aus den Indexen ziehen, die Sie haben."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Anzahl der als "dirty" markierten Seiten."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Anzahl der unbenutzten Seiten."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8746,7 +8790,7 @@ msgstr ""
"beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder "
"entfernt werden können."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8758,11 +8802,11 @@ msgstr ""
"aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Die Größe des Puffer-Pools in Seiten."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8770,7 +8814,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8778,11 +8822,11 @@ msgstr ""
"Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB "
"eine Tabelle komplett sequentiell durchsucht."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8790,7 +8834,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:874
+#: server_status.php:883
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 "
@@ -8805,55 +8849,55 @@ msgstr ""
"geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist "
"sollte dieser Wert klein sein."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Bisher ausgeführte fsync()-Operationen."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Momentan anstehende fsync()-Operationen."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Momentan anstehende Lesezugriffe."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Momentan anstehende Schreizugriffe."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Wieviel Daten bisher gelesen wurden, in Byte."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Wie oft Daten gelesen wurden."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Wie oft Daten geschrieben wurden."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Wieviel Daten bisher geschrieben wurden, in Byte."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der "
"Seiten die dafür geschrieben wurden."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8861,35 +8905,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Anzahl erstellter Seiten."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8898,55 +8942,55 @@ msgstr ""
"werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte "
"umzurechnen."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Anzahl gelesener Seiten."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Anzahl geschriebener Seiten."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Momentan anstehende Zeilen-Sperren."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in "
"Millisekunden."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8955,7 +8999,7 @@ msgstr ""
"auf die Platte zurück geschrieben (flush) wurden; auch bekannt als "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8963,7 +9007,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:908
+#: server_status.php:917
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 "
@@ -8971,11 +9015,11 @@ msgid ""
msgstr ""
"Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8986,17 +9030,17 @@ msgstr ""
"Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet "
"werden."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9006,19 +9050,19 @@ 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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, "
"geschrieben zu werden."
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9026,39 +9070,39 @@ msgstr ""
"Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist "
"Ihre table_cache-Variable wahrscheinlich zu niedrig."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Anzahl der geöffneten Dateien."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Anzahl der geöffneten Tabellen."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Freier Speicher im Abfragen-Cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Abfrage-Cache-Zugriffsrate."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9071,7 +9115,7 @@ msgstr ""
"recently used), d. h. es wird stets die Abfrage gelöscht, die am "
"längsten unbenutzt im Cache lag."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9079,19 +9123,19 @@ msgstr ""
"Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder "
"aufgrund der query_cache_type Einstellung)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Die Anzahl der Abfragen im Cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Der Status der ausfallsicheren Replikation."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9099,13 +9143,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9114,7 +9158,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9122,16 +9166,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9139,13 +9183,13 @@ msgstr ""
"Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread "
"wiederversuchten Transaktionen."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9153,12 +9197,12 @@ msgstr ""
"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu "
"verbinden."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9168,25 +9212,25 @@ msgstr ""
"wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, "
"sort_buffer herauf zu setzen."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Anzahl der sortierten Zeilen."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Wie oft eine Tabellensperre sofort erlangt wurde."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9198,7 +9242,7 @@ msgstr ""
"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle"
"(n) zerteilen oder Replikation benutzen."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9208,11 +9252,11 @@ msgstr ""
"Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, "
"sollte der thread_cache_size erhöht werden."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Anzahl der momentan offenen Verbindungen."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9224,7 +9268,7 @@ msgstr ""
"Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare "
"Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Anzahl der Prozesse, die nicht schlafen."
@@ -9347,7 +9391,7 @@ msgstr "Servervariablen und -einstellungen"
msgid "Session value"
msgstr "Wert für diese Sitzung"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globaler Wert"
@@ -9680,39 +9724,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Schlüssel sollte Buchstaben, Ziffern [em]und[/em] Sonderzeichen enthalten."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Fremdschlüsselwerte ansehen"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID der eingefügten Zeile: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Ansicht als PHP Code"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Ansicht als SQL Abfrage"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Geprüftes SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Titel"
@@ -10093,23 +10137,23 @@ msgstr "Beschränkung für auswärtige Schlüssel"
msgid "No rows selected"
msgstr "Es wurden keine Datensätze ausgewählt."
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Spalten auswählen (min. eines):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Eigenes Filterkriterium (Argumente für den WHERE-Ausdruck):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Einträge pro Seite"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Sortierung nach:"
@@ -10402,6 +10446,12 @@ msgstr "VIEW Name"
msgid "Rename view to"
msgstr "View umbenennen in"
+#~ msgid "Theme / Style"
+#~ msgstr "Oberflächendesign"
+
+#~ msgid "seconds"
+#~ msgstr "Sekunde"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Vergleich der Abfragedauer (in Mikrosekunden)"
diff --git a/po/el.po b/po/el.po
index d68c163c88..856f16f653 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-06 09:50+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-16 12:17+0200\n"
"Last-Translator: Panagiotis Papazoglou \n"
"Language-Team: greek \n"
"Language: el\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Εμφάνιση όλων"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"κλείσατε το μητρικό παράθυρο ή ο φυλλομετρητής σας δεν επιτρέπει τις "
"ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Αναζήτηση"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Αναζήτηση"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Όνομα κλειδιού"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Περιγραφή"
@@ -137,7 +137,7 @@ msgstr "Σχόλια Πίνακα"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Στήλη"
@@ -150,7 +150,7 @@ msgstr "Στήλη"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Τύπος"
@@ -166,7 +166,7 @@ msgstr "Τύπος"
msgid "Null"
msgstr "Κενό"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Σύνδεση με"
msgid "Comments"
msgstr "Σχόλια"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Σχόλια"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Όχι"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Όχι"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Εμφάνιση σχήματος της βάσης δεδομένων"
msgid "No tables found in database."
msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Επιλογή όλων"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Αποεπιλογή όλων"
@@ -271,7 +271,7 @@ msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s"
msgid "Rename database to"
msgstr "Μετονομασία βάσης δεδομένων σε"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Εντολή"
@@ -332,7 +332,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Πίνακας"
@@ -373,7 +373,7 @@ msgstr "Εγγραφές"
msgid "Size"
msgstr "Μέγεθος"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "σε χρήση"
@@ -399,7 +399,7 @@ msgstr "Τελευταία ενημέρωση"
msgid "Last check"
msgstr "Tελευταίος έλεγχος"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "εικονικός μάστορας"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Ταξινόμηση"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Αύξουσα"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Φθίνουσα"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Εμφάνιση"
@@ -460,7 +460,7 @@ msgstr "Διαγραφή"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ή"
@@ -489,58 +489,58 @@ msgstr "Χρήση Πινάκων"
msgid "SQL query on database %s :"
msgstr "Εντολή SQL στη βάση δεδομένων %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Άρνηση Πρόσβασης"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "τουλάχιστον έναν από τους όρους"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "όλους τους όρους"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "την ακριβή φράση"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "ως κανονική έκφραση"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Αποτελέσματα αναζήτησης για «%s » %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s απατέλεσμα στον πίνακα %s "
msgstr[1] "%s αποτελέσματα στον πίνακα %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Περιήγηση"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,65 +551,65 @@ msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τ
msgid "Delete"
msgstr "Διαγραφή"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Σύνολο: %s αποτέλεσμα"
msgstr[1] "Σύνολο: %s αποτελέσματα"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Αναζήτηση στη βάση δεδπμένων"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Όροι ή τιμές για αναζήτηση (μπαλαντέρ: «%»):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Έυρεση:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Μέσα στους πίνακες:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Εσωτερικό πεδίο:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Ο Πίνακας %s άδειασε"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Η προβολή %s διαγράφτηκε"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Ο Πίνακας %s διεγράφη"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Η παρακολούθηση είναι ενεργοποιημένη."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -618,107 +618,107 @@ msgstr ""
"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
"%sτεκμηρίωση%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Προβολή"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Αναπαραγωγή"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Σύνολο"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
"Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Με τους επιλεγμένους:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Επιλογή όλων"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Απεπιλογή όλων"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Επιλογή πινάκων με περίσσεια"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Εξαγωγή"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Εμφάνιση για εκτύπωση"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Άδειασμα"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Διαγραφή"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Έλεγχος πίνακα"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Βελτιστοποίηση Πίνακα"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Επιδιόρθωση πίνακα"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Ανάλυση Πίνακα"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Προσθήκη προθέματος στον πίνακα"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Αντικατάσταση προθέματος πίνακα"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Αντιγραφή πίνακα με πρόθεμα"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Περιληπτικός πίνακας δεδομένων"
@@ -733,9 +733,9 @@ msgstr "Παρακολουθούμενοι πίνακες"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Βάση"
@@ -751,8 +751,8 @@ msgstr "Δημιουργήθηκε"
msgid "Updated"
msgstr "Ενημερώθηκε"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Κατάσταση"
@@ -897,7 +897,7 @@ msgstr "Η ετικέτα διεγράφη."
msgid "Showing bookmark"
msgstr "Εμφάνιση σελιδοδείκτη"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε"
@@ -925,7 +925,7 @@ msgstr ""
"και αν αυξήσετε τα χρονικά όρια της php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -953,15 +953,15 @@ msgstr "Πατήστε για επιλογή"
msgid "Click to unselect"
msgstr "Πατήστε για απεπιλογή"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Θέλετε να εκτελέσετε την εντολή "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!"
@@ -1013,10 +1013,8 @@ msgstr "Αυτό δεν είναι αριθμός!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Πλήθος γραμμών αρχείου καταγραφής"
+msgstr "Συνολικό πλήθος"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1036,10 +1034,8 @@ msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!"
#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
-#, fuzzy
-#| msgid "Any user"
msgid "Add user"
-msgstr "Οποιοσδήποτε Χρήστης"
+msgstr "Προσθήκη χρήστη"
#: js/messages.php:59
msgid "Reloading Privileges"
@@ -1054,158 +1050,194 @@ msgstr "Διαγραφή των επιλεγμένων χρηστών"
msgid "Close"
msgstr "Κλείσιμο"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Επιλογή Διακομιστή"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Προβολή διαγράμματος ερωτήματος"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Σύνολο"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Φόρτωση"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Προώθηση Αιτήματος"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Σφάλμα στην Προώθηση του Αιτημάτος"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Διαγραφή Στήλης"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Προσθήκη Πρωτεύοντος Κλειδιού"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Μετονομασία βάσεων δεδομένων"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Επαναφόρτωση βάσεων δεδομένων"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Αντιγραφή βάσης δεδομένων"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Αλλαγή Συνόλου χαρακτήρων"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Δημιουργία Πίνακα"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Χρήση Πινάκων"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Αναζήτηση"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Προβολή αποτελεσμάτων αναζήτησης"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Αναζήτηση"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Διαγραφή"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν"
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Απόκρυψη παραθύρου ερωτήματος SQL"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Προβολή παραθύρου ερωτήματος SQL"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Εσωτερική Επεξεργασία"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Επεξεργασία"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Διάγραμμα τρέχουσας κυκλοφορίας"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Διάγραμμα τρέχοντος ερωτήματος"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Στατικά δεδομένα"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Σύνολο"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Άλλα"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Κυκλοφορία Διακομιστή"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Διεργασίες"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Συνδέσεις"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Ερωτήματα SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Στατιστικά ερωτήματος"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Φόρτωση"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Προώθηση Αιτήματος"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Σφάλμα στην Προώθηση του Αιτημάτος"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Διαγραφή Στήλης"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Προσθήκη Πρωτεύοντος Κλειδιού"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Μετονομασία βάσεων δεδομένων"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Επαναφόρτωση βάσεων δεδομένων"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Αντιγραφή βάσης δεδομένων"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Αλλαγή Συνόλου χαρακτήρων"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Δημιουργία Πίνακα"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Εισαγωγή Πίνακα"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Αναζήτηση"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Προβολή αποτελεσμάτων αναζήτησης"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Αναζήτηση"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Διαγραφή"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν"
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Απόκρυψη παραθύρου ερωτήματος SQL"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Προβολή παραθύρου ερωτήματος SQL"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Εσωτερική Επεξεργασία"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1213,41 +1245,41 @@ msgstr "Επεξεργασία"
msgid "Save"
msgstr "Αποθήκευση"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Απόκρυψη"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Απόκρυψη κριτηρίων αναζήτησης"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Προβολή κριτηρίων αναζήτησης"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Παράληψη"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Επιλέξτε αναφερθέν κλειδί"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Επιλέξτε Μη Διακριτό Κλειδί"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Επιλέξτε στήλη για εμφάνιση"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1255,27 +1287,27 @@ msgstr ""
"Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. "
"Θέλετε να συνεχίσετε;"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Προσθήκη επιλογής για τη στήλη "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Δημιουργία Κωδικού Πρόσβασης"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Παραγωγή"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Αλλαγή Κωδικού Πρόσβασης"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Περισσότερα"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1285,258 +1317,258 @@ msgstr ""
"εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ". τελευταία έκδοση:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "ενημερωμένο"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Ολοκληρώθηκε"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Προηγούμενο"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Επόμενο"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Σήμερα"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Ιανουαρίου"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Φεβρουαρίου"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Μαρτίου"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Απριλίου"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Μαΐου"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Ιουνίου"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Ιουλίου"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Αυγούστου"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Σεπτεμβρίου"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Οκτωβρίου"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Νοεμβρίου"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Δεκεμβρίου"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Ιαν"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Φεβ"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Μαρ"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Απρ"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Μάη"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Ιουν"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Ιουλ"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Αυγ"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Σεπ"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Οκτ"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Νοε"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Δεκ"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Κυριακή"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Δευτέρα"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Τρίτη"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Τετάρτη"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Πέμπτη"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Παρασκευή"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Σάββατο"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Κυρ"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Δευ"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Τρί"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Τετ"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Πέμ"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Παρ"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Σάβ"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Κυ"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Δε"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Τρ"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Τε"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Πε"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Πα"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Σα"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Ώρα"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Λεπτό"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Δευτερόλεπτο"
@@ -1633,7 +1665,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Βάσεις Δεδομένων"
@@ -1699,25 +1731,25 @@ msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το δια
msgid "This MySQL server does not support the %s storage engine."
msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Μη έγκυρη βάση δεδομένων"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Μη έγκυρο όνομα πίνακα"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Αδύνατη η αποθήκευση των ρυθμίσεων πίνακα για το περιβάλλον χρήστη"
@@ -1749,10 +1781,9 @@ msgstr "Το θέμα %s δεν βρέθηκε!"
msgid "Theme path not found for theme %s!"
msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Θέμα / Στυλ"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1760,7 +1791,6 @@ msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Καλωσήρθατε στο %s"
@@ -1851,10 +1881,8 @@ msgid "Wrong username/password. Access denied."
msgstr "Λανθασμένο όνομα χρήστη/κωδικός πρόσβασης. Άρνηση πρόσβασης."
#: libraries/auth/signon.auth.lib.php:87
-#, fuzzy
-#| msgid "Config authentication"
msgid "Can not find signon authentication script:"
-msgstr "Πιστοποίηση ρύθμισης"
+msgstr "Αδύνατη η εύρεση του κώδικα πιστοποίησης σύνδεσης:"
#: libraries/auth/swekey/swekey.auth.lib.php:118
#, php-format
@@ -1917,7 +1945,7 @@ msgstr "κοινόχρηστο"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Πίνακες"
@@ -2003,7 +2031,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Διακομιστής"
@@ -2051,7 +2078,7 @@ msgid "Documentation"
msgstr "Τεκμηρίωση"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Εντολή SQL"
@@ -2059,119 +2086,119 @@ msgstr "Εντολή SQL"
msgid "MySQL said: "
msgstr "Η MySQL επέστρεψε το μήνυμα: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Ανάλυση SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Χωρίς ανάλυση SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "χωρίς κώδικα PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Ανανέωση"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Παράβλεψη επικύρωσης SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Επικύρωση SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Εσωτερική επεξεργασία αυτού του ερωτήματος"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Εσωτερικό"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Δημιουργία προφίλ"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y στις %H:%M:%S"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Κορυφή"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Προηγούμενο"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Τέλος"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Μεταπήδηση στην βάση «%s»."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2183,42 +2210,42 @@ msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα
msgid "Structure"
msgstr "Δομή"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "Κώδικας SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Προσθήκη"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Λειτουργίες"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Περιηγηθείτε στον υπολογιστή σας:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Επιλογή από το φάκελο αποστολής του διακοιμίστή ιστού %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Δεν υπάρχουν αρχεία προς αποστολή"
@@ -2582,7 +2609,7 @@ msgstr "Προεπιλεγμένη καρτέλα πίνακα"
msgid "Show binary contents as HEX by default"
msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά ως προεπιλογή"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά"
@@ -2607,12 +2634,12 @@ msgid ""
"Disable the table maintenance mass operations, like optimizing or repairing "
"the selected tables of a database."
msgstr ""
+"Απενεργοποιεί τις λειτουργίες μαζικής συντήρησης πινάκων, όλως "
+"βελτιστοποίηση ή επισκευή των επιλεγμένων πινάκων μιας βάσης δεδομένων."
#: libraries/config/messages.inc.php:61
-#, fuzzy
-#| msgid "Table maintenance"
msgid "Disable multi table maintenance"
-msgstr "Συντήρηση Πίνακα"
+msgstr "Απενεργοποίηση συντήρησης πολλαπλών πινάκων"
#: libraries/config/messages.inc.php:62
msgid "Edit SQL queries in popup window"
@@ -4657,7 +4684,7 @@ msgstr "Σχεδιαστής"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Δικαιώματα"
@@ -4669,7 +4696,7 @@ msgstr "Εργασίες"
msgid "Return type"
msgstr "Τύπος επιστροφής"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4853,9 +4880,9 @@ msgstr "Σύνολο χαρακτήρων του αρχείου:"
msgid "Compression:"
msgstr "Συμπίεση"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Καμία"
@@ -4991,37 +5018,53 @@ msgstr "Επιλογές Ορισμένης Μορφής:"
msgid "Language"
msgstr "Γλώσσα"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Επαναφορά κατανομής στηλών"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Σύρτε για ανακατανομή"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Πατήστε για ταξινόμηση"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Πατήστε για εναλλαγή επισήμανσης"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "εγγραφή(ές) αρχίζοντας από την εγγραφή #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "οριζόντια"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "οριζόντια (στραμμένες επικεφαλίδες)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "κάθετη"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "σε %s μορφή με επανάληψη επικεφαλίδων ανά %s κελιά"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Ταξινόμηση ανά κλειδί"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5034,92 +5077,92 @@ msgstr "Ταξινόμηση ανά κλειδί"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Επιλογές"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Περιληπτικά κείμενα"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Πλήρη κείμενα"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Κλειδί συσχέτισης"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Στήλη προβολής συσχέτισης"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Εμφάνιση δυαδικών περιεχομένων"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Εμφάνιση περιεχομένων BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Μετατροπή περιηγητή"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Αντιγραφή"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Η Εγγραφή έχει διαγραφεί"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Τερματισμός"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "στην εντολή"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Εμφάνιση εγγραφών "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "συνολικά"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Αλλαγή"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Εμφάνιση διαγράμματος"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Δημιουργία προβολής"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Δεν βρέθηκε η σύνδεση"
@@ -5168,7 +5211,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Κατάσταση InnoDB"
@@ -5678,7 +5721,7 @@ msgstr "Διαθέσιμοι τύποι MIME"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Φιλοξενητής"
@@ -5904,7 +5947,7 @@ msgstr "αποτέλεσμα SQL"
msgid "Generated by"
msgstr "Δημιουργήθηκε από:"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6065,7 +6108,7 @@ msgstr "Προσθήκη προθέματος πίνακα"
msgid "Add prefix"
msgstr "Προσθήκη προθέματος"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Χωρίς αλλαγή"
@@ -6401,14 +6444,14 @@ msgid "Slave status"
msgstr "Κατάσταση δευτερεύοντος"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Μεταβλητή"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Τιμή"
@@ -6636,20 +6679,20 @@ msgid "Synchronize"
msgstr "Συγχρονισμός"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Δυαδικό αρχείο καταγραφής"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Μεταβλητές"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Σύνολο χαρακτήρων"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Μηχανές"
@@ -6694,11 +6737,11 @@ msgstr "Καθάρισμα"
msgid "Columns"
msgstr "Στήλες"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
@@ -6924,7 +6967,7 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)"
msgid "+ Add a new value"
msgstr "+ Προσθήκη νέας τιμής"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Χρόνος"
@@ -7127,7 +7170,7 @@ msgid "Protocol version"
msgstr "Έκδοση πρωτοκόλλου"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Χρήστης"
@@ -7402,7 +7445,7 @@ msgstr "Άθροιση"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Τελεστής"
@@ -7582,17 +7625,17 @@ msgstr "Το αρχείο δεν υπάρχει"
msgid "Select binary log to view"
msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Αρχεία"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Πλήρης εμφάνιση ερωτημάτων"
@@ -8095,10 +8138,8 @@ msgid "wildcard"
msgstr "μπαλαντέρ"
#: server_privileges.php:2295
-#, fuzzy
-#| msgid "View %s has been dropped"
msgid "User has been added."
-msgstr "Η προβολή %s διαγράφτηκε"
+msgstr "Ο χρήστης προστέθηκε."
#: server_replication.php:49
msgid "Unknown error"
@@ -8131,7 +8172,7 @@ msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
"διαδικασία."
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Προβολή κατάστασης πρωτεύοντος"
@@ -8283,12 +8324,32 @@ msgstr ""
"Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία "
"αναπαραγωγής. Θέλετε να τον ρυθμίσετε ;"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Ρυθμός ανανέωσης"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "minutes"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "λεπτά"
+msgstr[1] "λεπτά"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "δευτερόλεπτο"
+msgstr[1] "δευτερόλεπτο"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Η λειτουργία %s διεκόπη."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8296,166 +8357,123 @@ msgstr ""
"Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη "
"σταματήσει."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Χειριστής"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Λανθάνουσα μνήμη ερωτήματος"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Διεργασίες"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Προσωρινά δεδομένα"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Καθυστερημένες εισαγωγές"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Λανθάνουσα μνήμη κλειδιού"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Ενώσεις"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Ταξινόμηση"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Συντονιστής κινήσεων"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Εμφάνιση ανοιχτών πινάκων"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Εμφάνιση δευτερευόντων διακομιστών"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Εμφάνιση κατάστασης δευτερεύοντος"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Πληροφορίες εκτέλεσης"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Επιλογή Διακομιστή"
+msgstr "Κυκλοφορία Διακομιστή"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Στατιστικά ερωτήματος"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος"
+msgstr "Όλες οι μεταβλητές κατάστασης"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Ανανέωση"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Δευτερόλεπτο"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Δευτερόλεπτο"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Λεπτό"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "Διατήρηση κωδικού πρόσβασης"
+msgstr "Να περιλαμβάνει τη λέξη:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Εμφάνιση ανοιχτών πινάκων"
+msgstr "Εμφάνιση μόνο τιμών ειδοποίησης"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Φιλτράρισμα ανά κατηγορία..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "Σχετικοί Σύνδεσμοι"
+msgstr "Σχετικοί σύνδεσμοι:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "ανά ώρα"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "ανά λεπτό"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "ανά δευτερόλεπτο"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Τύπος ερωτήματος"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "#"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %s. Ξεκίνησε στις %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8463,35 +8481,35 @@ msgstr ""
"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε "
"μια αναπαραγωγική διαδικασία."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική"
"b> διαδικασία."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια "
"αναπαραγωγική διαδικασία."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, "
-"επισκεφτείτε τον τομέα αναπαραγωγής ."
+"επισκεφτείτε τον τομέα αναπαραγωγής ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Κατάσταση αναπαραγωγής"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Κίνηση"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8500,45 +8518,40 @@ msgstr ""
"έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να "
"είναι εσφαλμένες."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Ελήφθησαν"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Εστάλησαν"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Συνδέσεις"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Αποτυχημένες προσπάθειες"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Ακυρωμένες συνδέσεις"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Διεργασίες"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
-msgstr "ID"
+msgstr "Κωδικός"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Whether to enable SSL for connection to MySQL server."
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Ενεργοποιεί/Απενεργοποιεί το SSL για σύνδεση στο διακομιστή MySQL."
+msgstr ""
+"Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8548,18 +8561,20 @@ msgstr ""
"μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν "
"ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα "
"μνήμη καταγραφής."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
+"Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή "
+"MySQL."
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8571,11 +8586,11 @@ msgstr ""
"είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι "
"προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8583,7 +8598,7 @@ msgstr ""
"Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από "
"τον διακομιστή κατά την εκτέλεσε δηλώσεων."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8591,7 +8606,7 @@ msgstr ""
"Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις "
"οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8600,25 +8615,25 @@ msgstr ""
"διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT "
"DELAYED χρησιμοποιεί της δική του διεργασία."
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Ο αριθμός των ΚΑΘΥΣΤΕΡΗΜΕΝΑ ΕΙΣΕΡΧΟΜΕΝΩΝ (INSERT DELAYED) γραμμών που "
"εγγράφτηκαν."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων ΕΚΚΑΘΑΡΙΣΗΣ (FLUSH)."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΠΑΡΑΠΟΜΠΗΣ (COMMIT)."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8629,7 +8644,7 @@ msgstr ""
"ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που "
"βρέθηκαν."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8640,7 +8655,7 @@ msgstr ""
"ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει "
"ευρετήριο."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8649,7 +8664,7 @@ msgstr ""
"είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές "
"σας έχουν κάνει σωστά ευρετήρια."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8659,7 +8674,7 @@ msgstr ""
"κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα "
"περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8668,7 +8683,7 @@ msgstr ""
"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής "
"ORDER BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8681,7 +8696,7 @@ msgstr ""
"σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα "
"κλειδιά."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8693,37 +8708,37 @@ msgstr ""
"ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν "
"έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΕΠΙΣΤΡΟΦΗΣ (ROLLBACK)."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Ο αριθμός των μη καθαρώ σελίδων."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για "
"εκκαθάριση."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Ο αριθμός των ελεύθερων σελίδων."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8733,7 +8748,7 @@ msgstr ""
"σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να "
"εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8745,11 +8760,11 @@ msgstr ""
"τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8758,7 +8773,7 @@ msgstr ""
"συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά "
"με τυχαία σειρά."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8766,11 +8781,11 @@ msgstr ""
"Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό "
"συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8778,7 +8793,7 @@ msgstr ""
"Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει "
"από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8793,55 +8808,55 @@ msgstr ""
"αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή "
"πρέπει να είναι μικρή."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
"που γράφτηκαν για αυτό το σκοπό."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
"που γράφτηκαν για αυτό το σκοπό."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8849,36 +8864,36 @@ msgstr ""
"Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer "
"καταγραφής και και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
"Ο αριθμός των εγγραφών fsyncs() που ολοκληρώθηκαν στο αρχείο καταγραφής."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Ο αριθμός των δημιουργηθέντων σελίδων."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8887,56 +8902,56 @@ msgstr ""
"υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη "
"μετατροπή σε bytes."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Ο αριθμός των αναγνωσμένων σελίδων."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Ο αριθμός των εγεγγραμμένων σελίδων."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε "
"χιλιοστοδευτερόλεπτα."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε "
"χιλιοστοδευτερόλεπτα.."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8945,7 +8960,7 @@ msgstr ""
"αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8954,7 +8969,7 @@ msgstr ""
"Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση "
"λανθάνουσα μνήμη κλειδιού χρησιμοποιείται."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -8964,12 +8979,12 @@ msgstr ""
"τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι "
"σε χρήση με μια φορά."
-#: server_status.php:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
"Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη."
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -8980,16 +8995,16 @@ msgstr ""
"μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως "
"Key_reads/Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
"Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη."
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -9000,19 +9015,21 @@ msgstr ""
"διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 "
"σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση "
+"του διακομιστή."
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές ΚΑΘΥΣΤΕΡΗΜΕΝΩΝ "
"ΕΙΣΑΓΩΓΩΝ (INSERT DELAYED)."
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9020,40 +9037,43 @@ msgstr ""
"Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι "
"μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για "
"καταγραφή)."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί."
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Ο αριθμός των ελεύθερων μπλόκς στη λανθάνουσα μνήμη ερωτημάτων. Υψηλές τιμές "
+"ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας "
+"την εντολή FLUSH QUERY CACHE."
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9067,7 +9087,7 @@ msgstr ""
"χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να "
"απομακρύνει από τη λανθάνουσα μνήμη."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9075,19 +9095,19 @@ msgstr ""
"Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν "
"απομνημονεύονται λόγω της ρύθμισης query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9095,13 +9115,13 @@ msgstr ""
"Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, "
"πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας."
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα "
"παραπομπής."
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -9110,7 +9130,7 @@ msgstr ""
"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα "
"ευρετήρια των πινάκων σας.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9118,17 +9138,17 @@ msgstr ""
"Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά "
"δεν είναι κρίσιμος αν δεν είναι μεγάλος.)"
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα."
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα "
"συνεργασία SQL."
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9136,13 +9156,13 @@ msgstr ""
"Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας "
"αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές."
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε "
"πρωτεύωντα."
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9150,14 +9170,14 @@ msgstr ""
"Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time "
"δευτερόλεπτα να δημιουργηθούν."
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time "
"δευτερόλεπτα."
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -9167,23 +9187,23 @@ msgstr ""
"ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της "
"μεταβλητής συστήματος sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Ο αριθμός των ταξινομημένων γραμμών."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα.."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9195,7 +9215,7 @@ msgstr ""
"απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον "
"πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9205,11 +9225,11 @@ msgstr ""
"λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν "
"η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9221,7 +9241,7 @@ msgstr ""
"thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης "
"αν έχετε μια καλή εφαρμογή διεργασίας.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη."
@@ -9349,7 +9369,7 @@ msgstr "Ρυθμίσεις και μεταβλητές του διακομιστ
msgid "Session value"
msgstr "Τιμή Συνεδρίας"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Προεπιλεγμένη τιμή"
@@ -9682,39 +9702,39 @@ msgstr ""
"Το κλειδί πρέπει να περιέχει γράμματα, αριθμούς [em]και[/em] ειδικούς "
"χαρακτήρες"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Αναζήτηση μη διακριτών τιμών"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Εμφάνιση ως κώδικά PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Εμφάνιση ερωτήματος SQL"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Επικυρωμένη SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Ετικέτα"
@@ -9798,10 +9818,8 @@ msgid "Line"
msgstr "Γραμμή"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "Εσωτερικό"
+msgstr "Καμπύλη γραμμή"
#: tbl_chart.php:89
msgid "Pie"
@@ -9812,50 +9830,36 @@ msgid "Stacked"
msgstr "Σταθεροποιημένο"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Τίτλος αναφοράς:"
+msgstr "Τίτλος διαγράμματος"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Άξονας Χ:"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "Ερωτήματα SQL"
+msgstr "Σειρές:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Στήλες περιοχής κειμένου (textarea)"
+msgstr "Οι απομένουσες στήλες"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "Ετικέτα άξονα Χ"
+msgstr "Ετικέτα άξονα Χ:"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Τιμή"
+msgstr "Τιμές Χ"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "Ετικέτα άξονα Υ"
+msgstr "Ετικέτα άξονα Υ:"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Τιμή"
+msgstr "Τιμές Υ"
#: tbl_create.php:56
#, php-format
@@ -10098,23 +10102,23 @@ msgstr "Όριο μη διακριτού κλειδιού"
msgid "No rows selected"
msgstr "Δεν επιλέχθηκαν γραμμές"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Επιλογή πεδίων (τουλάχιστον ένα)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Εγγραφές ανά σελίδα"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Σειρά εμφάνισης:"
@@ -10397,6 +10401,12 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος"
msgid "Rename view to"
msgstr "Μετονομασία πίνακα σε"
+#~ msgid "Theme / Style"
+#~ msgstr "Θέμα / Στυλ"
+
+#~ msgid "seconds"
+#~ msgstr "δευτερόλεπτα"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Σύγκριση χρόνου εκτέλεσης ερωτήματος (σε χιλιοστοδευτερόλεπτα)"
diff --git a/po/en_GB.po b/po/en_GB.po
index 2c6d43910c..8c68ea958f 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-15 02:35+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-17 14:19+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: english-gb \n"
"Language: en_GB\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Show all"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Search"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Search"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Description"
@@ -137,7 +137,7 @@ msgstr "Table comments"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Column"
@@ -150,7 +150,7 @@ msgstr "Column"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -166,7 +166,7 @@ msgstr "Type"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "Comments"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Comments"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "No"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "View dump (schema) of database"
msgid "No tables found in database."
msgstr "No tables found in database."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Select All"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Unselect All"
@@ -271,7 +271,7 @@ msgstr "Database %s has been copied to %s"
msgid "Rename database to"
msgstr "Rename database to"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Command"
@@ -332,7 +332,7 @@ msgstr "Switch to copied database"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Edit or export relational schema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Table"
@@ -373,7 +373,7 @@ msgstr "Rows"
msgid "Size"
msgstr "Size"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in use"
@@ -399,7 +399,7 @@ msgstr "Last update"
msgid "Last check"
msgstr "Last check"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "visual builder"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sort"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ascending"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descending"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Show"
@@ -460,7 +460,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Or"
@@ -489,58 +489,58 @@ msgstr "Use Tables"
msgid "SQL query on database %s :"
msgstr "SQL query on database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Submit Query"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Access denied"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "at least one of the words"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "all words"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "the exact phrase"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "as regular expression"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Search results for \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s match inside table %s "
msgstr[1] "%s matches inside table %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Browse"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Delete the matches for the %s table?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,65 +551,65 @@ msgstr "Delete the matches for the %s table?"
msgid "Delete"
msgstr "Delete"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Total: %s match"
msgstr[1] "Total: %s matches"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Search in database"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Find:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Words are separated by a space character (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Inside table(s):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Inside column:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "No tables found in database."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Table %s has been emptied"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "View %s has been dropped"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Table %s has been dropped"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Tracking is active."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Tracking is not active."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -618,106 +618,106 @@ msgstr ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "View"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replication"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Check All"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Uncheck All"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Check tables having overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Print view"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Empty"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Drop"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Check table"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimise table"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Repair table"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyse table"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Add prefix to table"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Replace table prefix"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Copy table with prefix"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Dictionary"
@@ -732,9 +732,9 @@ msgstr "Tracked tables"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Database"
@@ -750,8 +750,8 @@ msgstr "Created"
msgid "Updated"
msgstr "Updated"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -893,7 +893,7 @@ msgstr "The bookmark has been deleted."
msgid "Showing bookmark"
msgstr "Showing bookmark"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s created"
@@ -920,7 +920,7 @@ msgstr ""
"won't be able to finish this import unless you increase php time limits."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -946,15 +946,15 @@ msgstr "Click to select"
msgid "Click to unselect"
msgstr "Click to unselect"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Do you really want to "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
@@ -1005,7 +1005,6 @@ msgstr "This is not a number!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#| msgid "Log file count"
msgid "Total count"
msgstr "Total count"
@@ -1043,155 +1042,191 @@ msgstr "Removing Selected Users"
msgid "Close"
msgstr "Close"
-#: js/messages.php:64 server_status.php:393
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Live traffic chart"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr "Live conn./process chart"
-
-#: js/messages.php:66 server_status.php:423
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Live query chart"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr "Static data"
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr "Other"
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Loading"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Processing Request"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Error in Processing Request"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Dropping Column"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Adding Primary Key"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Renaming Databases"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Reload Database"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Copying Database"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Changing Charset"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Table must have at least one column"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Create Table"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Insert Table"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Searching"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Hide search results"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Show search results"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Browsing"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Deleting"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "Hide query box"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Show query box"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Inline Edit"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edit"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Live traffic chart"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Live conn./process chart"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Live query chart"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Static data"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Other"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Server traffic"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr "Connections since last refresh"
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processes"
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr "Connections / Processes"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr "Issued queries since last refresh"
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr "Issued queries"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Query statistics"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Loading"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Processing Request"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Error in Processing Request"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Dropping Column"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Adding Primary Key"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Renaming Databases"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Reload Database"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Copying Database"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Changing Charset"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Table must have at least one column"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Create Table"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Insert Table"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Searching"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Hide search results"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Show search results"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Browsing"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Deleting"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Hide query box"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Show query box"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Inline Edit"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1199,41 +1234,41 @@ msgstr "Edit"
msgid "Save"
msgstr "Save"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Hide"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Hide search criteria"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Show search criteria"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Select referenced key"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Select Foreign Key"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Choose column to display"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1241,27 +1276,27 @@ 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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Add an option for column "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Generate password"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generate"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Change Password"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "More"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1271,258 +1306,258 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", latest stable version:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "up to date"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Done"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Prev"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Next"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Today"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "January"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "February"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "March"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "April"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "May"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "June"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "July"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "August"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "September"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "October"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "November"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Sunday"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Monday"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Tuesday"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Wednesday"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Thursday"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Friday"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Saturday"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Tu"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "We"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Th"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Wk"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Hour"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Second"
@@ -1618,7 +1653,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databases"
@@ -1683,25 +1718,25 @@ msgstr "%s has been disabled for this MySQL server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "This MySQL server does not support the %s storage engine."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Invalid database"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Invalid table name"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error renaming table %1$s to %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Table %s has been renamed to %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Could not save table UI preferences"
@@ -1733,10 +1768,9 @@ msgstr "Theme %s not found!"
msgid "Theme path not found for theme %s!"
msgstr "Theme path not found for theme %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1744,7 +1778,6 @@ msgstr "Cannot connect: invalid settings."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Welcome to %s"
@@ -1894,7 +1927,7 @@ msgstr "shared"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tables"
@@ -1978,7 +2011,6 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2026,7 +2058,7 @@ msgid "Documentation"
msgstr "Documentation"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL query"
@@ -2034,119 +2066,119 @@ msgstr "SQL query"
msgid "MySQL said: "
msgstr "MySQL said: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Failed to connect to SQL validator!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Explain SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Without PHP Code"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Create PHP Code"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Refresh"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Inline edit of this query"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profiling"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Previous"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "End"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Jump to database "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "The %s functionality is affected by a known bug, see %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2158,41 +2190,41 @@ msgstr "The %s functionality is affected by a known bug, see %s"
msgid "Structure"
msgstr "Structure"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Insert"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operations"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Browse your computer:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Select from the web server upload directory %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "The directory you set for upload work cannot be reached"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "There are no files to upload"
@@ -2550,7 +2582,7 @@ msgstr "Default table tab"
msgid "Show binary contents as HEX by default"
msgstr "Show binary contents as HEX by default"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Show binary contents as HEX"
@@ -4573,7 +4605,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privileges"
@@ -4585,7 +4617,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Return type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4768,9 +4800,9 @@ msgstr "Character set of the file:"
msgid "Compression:"
msgstr "Compression:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "None"
@@ -4902,37 +4934,53 @@ msgstr "Format-Specific Options:"
msgid "Language"
msgstr "Language"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Restore column order"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Drag to reorder"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Click to sort"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Click to mark/unmark"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d is not valid row number."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "row(s) starting from row #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (rotated headers)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "in %s mode and repeat headers after %s cells"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sort by key"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4945,92 +4993,92 @@ msgstr "Sort by key"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Options"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Partial texts"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Full texts"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relational key"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Relational display column"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Show binary contents"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Show BLOB contents"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Copy"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "The row has been deleted"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Change"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Display chart"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Create view"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link not found"
@@ -5078,7 +5126,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -5577,7 +5625,7 @@ msgstr "Display MIME types"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5800,7 +5848,7 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Generated by"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -5962,7 +6010,7 @@ msgstr "Add table prefix"
msgid "Add prefix"
msgstr "Add prefix"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "No change"
@@ -6293,14 +6341,14 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Value"
@@ -6528,20 +6576,20 @@ msgid "Synchronize"
msgstr "Synchronise"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binary log"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variables"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Charsets"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Engines"
@@ -6586,11 +6634,11 @@ msgstr "Clear"
msgid "Columns"
msgstr "Columns"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -6815,7 +6863,7 @@ msgstr "PARTITION definition"
msgid "+ Add a new value"
msgstr "+ Add a new value"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Time"
@@ -7013,7 +7061,7 @@ msgid "Protocol version"
msgstr "Protocol version"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "User"
@@ -7282,7 +7330,7 @@ msgstr "Aggregate"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7458,17 +7506,17 @@ msgstr "File doesn't exist"
msgid "Select binary log to view"
msgstr "Select binary log to view"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Files"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Show Full Queries"
@@ -7988,7 +8036,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Show master status"
@@ -8136,169 +8184,153 @@ msgstr ""
"This server is not configured as slave in a replication process. Would you "
"like to configure it?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Refresh rate"
+
+#: server_status.php:31
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minute"
+msgstr[1] "%d minutes"
+
+#: server_status.php:33
+#, php-format
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "%d second"
+msgstr[1] "%d seconds"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s was successfully killed."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Handler"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Threads"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Temporary data"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Joins"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sorting"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Show open tables"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Show slave hosts"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Show slave status"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Runtime Information"
-#: server_status.php:367
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
msgstr "Server traffic"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Query statistics"
-
-#: server_status.php:369
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
msgstr "All status variables"
-#: server_status.php:379 server_status.php:410
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Refresh rate"
-
-#: server_status.php:380 server_status.php:411
-#| msgid "Second"
-msgid "second"
-msgstr "second"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#| msgid "Second"
-msgid "seconds"
-msgstr "seconds"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#| msgid "Minute"
-msgid "minutes"
-msgstr "minutes"
-
-#: server_status.php:440
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
msgstr "Containing the word:"
-#: server_status.php:445
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
msgstr "Show only alert values"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr "Filter by category..."
-#: server_status.php:462
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
msgstr "Related links:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per hour"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per minute"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per second"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Query type"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr "#"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Network traffic since startup: %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "This MySQL server has been running for %s. It started up on %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8306,32 +8338,32 @@ msgstr ""
"This MySQL server works as master and slave in replication"
"b> process."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"This MySQL server works as master in replication process."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr "This MySQL server works as slave in replication process."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Replication status"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Traffic"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8339,44 +8371,39 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Received"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Sent"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Connections"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Aborted"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processes"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#| msgid "Whether to enable SSL for connection to MySQL server."
+#: server_status.php:849
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:841
+#: server_status.php:850
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 "
@@ -8386,101 +8413,101 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:842
+#: server_status.php:851
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:843
-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:844
-msgid ""
-"The number of temporary tables on disk created automatically by the server "
-"while executing statements. If Created_tmp_disk_tables is big, you may want "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-msgstr ""
-"The number of temporary tables on disk created automatically by the server "
-"while executing statements. If Created_tmp_disk_tables is big, you may want "
-"to increase the tmp_table_size value to cause temporary tables to be memory-"
-"based instead of disk-based."
-
-#: server_status.php:845
-msgid "How many temporary files mysqld has created."
-msgstr "How many temporary files mysqld has created."
-
-#: server_status.php:846
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: server_status.php:847
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: server_status.php:848
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: server_status.php:849
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: server_status.php:850
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: server_status.php:851
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
#: server_status.php:852
-msgid "The number of times a row was deleted from a table."
-msgstr "The number of times a row was deleted from a table."
+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:853
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."
+"The number of temporary tables on disk created automatically by the server "
+"while executing statements. If Created_tmp_disk_tables is big, you may want "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
msgstr ""
-"The 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."
+"The number of temporary tables on disk created automatically by the server "
+"while executing statements. If Created_tmp_disk_tables is big, you may want "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
#: server_status.php:854
-msgid ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-msgstr ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgid "How many temporary files mysqld has created."
+msgstr "How many temporary files mysqld has created."
#: server_status.php:855
msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+
+#: server_status.php:856
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+
+#: server_status.php:857
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+
+#: server_status.php:858
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
+
+#: server_status.php:859
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:860
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:861
+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:862
+msgid ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+msgstr ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+
+#: server_status.php:863
+msgid ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgstr ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+
+#: server_status.php:864
+msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
msgstr ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8490,7 +8517,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8498,7 +8525,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:858
+#: server_status.php:867
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 "
@@ -8510,7 +8537,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:859
+#: server_status.php:868
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 "
@@ -8522,36 +8549,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "The number of free pages."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8561,7 +8588,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8573,11 +8600,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8585,7 +8612,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8593,11 +8620,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8605,7 +8632,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:874
+#: server_status.php:883
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 "
@@ -8619,51 +8646,51 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "The number of doublewrite operations that have been performed."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8671,35 +8698,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "The number of pages created."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8707,51 +8734,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "The number of pages read."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "The number of pages written."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "The number of rows read from InnoDB tables."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "The number of rows updated in InnoDB tables."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8759,7 +8786,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:907
+#: server_status.php:916
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."
@@ -8767,7 +8794,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:908
+#: server_status.php:917
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 "
@@ -8777,11 +8804,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8791,15 +8818,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8809,7 +8836,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -8817,11 +8844,11 @@ msgstr ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8829,19 +8856,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:920
+#: server_status.php:929
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 "
@@ -8851,19 +8878,19 @@ msgstr ""
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8875,7 +8902,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8883,19 +8910,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8903,11 +8930,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -8915,7 +8942,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8923,15 +8950,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -8939,11 +8966,11 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -8951,13 +8978,13 @@ msgstr ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -8967,23 +8994,23 @@ msgstr ""
"is large, you should consider increasing the value of the sort_buffer_size "
"system variable."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "The number of sorts that were done with ranges."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "The number of sorted rows."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -8995,7 +9022,7 @@ msgstr ""
"should first optimise your queries, and then either split your table or "
"tables or use replication."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9005,11 +9032,11 @@ msgstr ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "The number of currently open connections."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9021,7 +9048,7 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
@@ -9144,7 +9171,7 @@ msgstr "Server variables and settings"
msgid "Session value"
msgstr "Session value"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Global value"
@@ -9463,39 +9490,39 @@ msgstr "Key is too short, it should have at least 8 characters."
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Key should contain letters, numbers [em]and[/em] special characters."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Using bookmark \"%s\" as default browse query."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Inserted row id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Showing as PHP code"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Showing SQL query"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Validated SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Label"
@@ -9576,7 +9603,6 @@ msgid "Line"
msgstr "Line"
#: tbl_chart.php:88
-#| msgid "Inline"
msgid "Spline"
msgstr "Spline"
@@ -9589,7 +9615,6 @@ msgid "Stacked"
msgstr "Stacked"
#: tbl_chart.php:94
-#| msgid "Report title:"
msgid "Chart title"
msgstr "Chart title"
@@ -9598,32 +9623,26 @@ msgid "X-Axis:"
msgstr "X-Axis:"
#: tbl_chart.php:113
-#| msgid "SQL queries"
msgid "Series:"
msgstr "Series:"
#: tbl_chart.php:115
-#| msgid "Textarea columns"
msgid "The remaining columns"
msgstr "The remaining columns"
#: tbl_chart.php:128
-#| msgid "X Axis label"
msgid "X-Axis label:"
msgstr "X-Axis label:"
#: tbl_chart.php:128
-#| msgid "Value"
msgid "X Values"
msgstr "X Values"
#: tbl_chart.php:129
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
msgstr "Y-Axis label:"
#: tbl_chart.php:129
-#| msgid "Value"
msgid "Y Values"
msgstr "Y Values"
@@ -9865,23 +9884,23 @@ msgstr "Foreign key constraint"
msgid "No rows selected"
msgstr "No rows selected"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Select columns (at least one):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Add search conditions (body of the \"where\" clause):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Number of rows per page"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Display order:"
@@ -10162,6 +10181,12 @@ msgstr "VIEW name"
msgid "Rename view to"
msgstr "Rename view to"
+#~ msgid "Theme / Style"
+#~ msgstr "Theme / Style"
+
+#~ msgid "seconds"
+#~ msgstr "seconds"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Query execution time comparison (in microseconds)"
diff --git a/po/es.po b/po/es.po
index 6478a70cc5..56fded4cb8 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-09 17:25+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-15 23:05+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
"Language: es\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Mostrar todo"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"principal o su navegador está bloqueando las actualizaciones en ventanas "
"múltiples debido a sus parámetros de seguridad."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Buscar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Buscar"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,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:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Descripción"
@@ -137,7 +137,7 @@ msgstr "Comentarios de la tabla"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Columna"
@@ -150,7 +150,7 @@ msgstr "Columna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -166,7 +166,7 @@ msgstr "Tipo"
msgid "Null"
msgstr "Nulo"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Enlaces a"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Comentarios"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "No"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Ver el volcado (esquema) de la base de datos"
msgid "No tables found in database."
msgstr "No se han encontrado tablas en la base de datos."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Seleccionar todo"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Deseleccionar todo"
@@ -271,7 +271,7 @@ msgstr "La base de datos %s ha sido copiada a %s"
msgid "Rename database to"
msgstr "Renombrar la base de datos a"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Comando"
@@ -332,7 +332,7 @@ msgstr "Seleccionar la base de datos copiada"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Editar o exportar esquema relacional"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabla"
@@ -373,7 +373,7 @@ msgstr "Filas"
msgid "Size"
msgstr "Tamaño"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "en uso"
@@ -401,7 +401,7 @@ msgstr "Última revisión"
# singular: tabla
# plural: tablas
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -421,25 +421,25 @@ msgid "visual builder"
msgstr "editor visual"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Ordenar"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
@@ -462,7 +462,7 @@ msgstr "Borrar"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "O"
@@ -491,60 +491,60 @@ msgstr "Usar tablas"
msgid "SQL query on database %s :"
msgstr "Consulta a la base de datos %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Ejecutar la consulta"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acceso denegado"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "al menos una de estas palabras"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "Todas las palabras"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "La frase exacta"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "como expresión regular"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Resultados de la búsqueda para \"%s \" %s:"
# singular: %s resultado en la tabla %s
# plural: %s resultados en la tabla %s
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s resultado en la tabla %s "
msgstr[1] "%s resultados en la tabla %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Examinar"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "¿Eliminar las coincidencias para la tabla %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -555,65 +555,65 @@ msgstr "¿Eliminar las coincidencias para la tabla %s?"
msgid "Delete"
msgstr "Borrar"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Total: %s resultado"
msgstr[1] "Total: %s resultados"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Buscar en la base de datos"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Encontrado:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Las palabras están separadas por un espacio (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "En la(s) tabla(s):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Dentro de la columna:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "No se han encontrado tablas en la base de datos."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Se ha vaciado la tabla %s"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Se descartó el modo de visualización %s"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Se ha eliminado la tabla %s"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "El seguimiento está activo."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "El seguimiento no está activo."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -622,107 +622,107 @@ msgstr ""
"Esta vista tiene al menos este número de filas. Por favor refiérase a la "
"%sdocumentation%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Visualizar"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replicación"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Número de filas"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
"%s es el motor de almacenamiento predeterminado en este servidor MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Para los elementos que están marcados:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Marcar todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desmarcar todos"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Marcar las tablas con residuo a depurar"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Vista de impresión"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Vaciar"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Eliminar"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Revisar la tabla"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizar la tabla"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparar la tabla"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizar la tabla"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Agregar prefijo a la tabla"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Reemplazar prefijo de la tabla"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Copiar tabla con prefijo"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Diccionario de datos"
@@ -737,9 +737,9 @@ msgstr "Tablas con seguimiento"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Base de datos"
@@ -755,8 +755,8 @@ msgstr "Creado/a"
msgid "Updated"
msgstr "Actualizado"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Estado actual"
@@ -903,7 +903,7 @@ msgstr "El favorito ha sido borrado."
msgid "Showing bookmark"
msgstr "Mostrando el favorito"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "El favorito %s fue creado"
@@ -931,7 +931,7 @@ msgstr ""
"importación a menos que usted incremente el tiempo de ejecución de php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -957,15 +957,15 @@ msgstr "Clic para seleccionar"
msgid "Click to unselect"
msgstr "Clic para deseleccionar"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Realmente desea "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "¡Está a punto de DESTRUIR una base de datos completa!"
@@ -1018,10 +1018,8 @@ msgstr "¡Ésto no es un número!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Cantidad de archivos de registro"
+msgstr "Cantidad total"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1057,157 +1055,195 @@ msgstr "Eliminando los usuarios seleccionados"
msgid "Close"
msgstr "Cerrar"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Elección del servidor"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Mostrar gráfico de consultas"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Cargando"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Procesando Petición"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Error al Procesar la Petición"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Eliminando Columna"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Añadiendo Clave Primaria"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Renombrando Bases de Datos"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Recargar Base de Datos"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Copiando Base de Datos"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Cambiando el Juego de caracteres"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "La tabla debe tener al menos una columna"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Crear tabla"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Insertar tablas"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Buscando"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Ocultar resultados de búsqueda"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Mostrar resultados de búsqueda"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Examinando"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Borrando"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "Ocultar ventana de consultas SQL"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Mostrar ventana de consultas SQL"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Editar en línea"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Gráfico de tráfico en vivo"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Gráfico de procesos/conexiones en vivo"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Gráfico de consultas en vivo"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Datos estáticos"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Otro"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Tráfico del servidor"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesos"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Conexiones"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Consultas SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Estadísticas de Consulta"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Cargando"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Procesando Petición"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Error al Procesar la Petición"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Eliminando Columna"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Añadiendo Clave Primaria"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Renombrando Bases de Datos"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Recargar Base de Datos"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Copiando Base de Datos"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Cambiando el Juego de caracteres"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "La tabla debe tener al menos una columna"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Crear tabla"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Insertar tablas"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Buscando"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Ocultar resultados de búsqueda"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Mostrar resultados de búsqueda"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Examinando"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Borrando"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Ocultar ventana de consultas SQL"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Mostrar ventana de consultas SQL"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Editar en línea"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1215,41 +1251,41 @@ msgstr "Editar"
msgid "Save"
msgstr "Guardar"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ocultar"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Ocultar criterio de búsqueda"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Mostrar criterio de búsqueda"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Seleccione la clave referenciada"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Seleccione la clave foránea"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Por favor seleccione la clave primaria o una clave única"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Elegir la columna a mostrar"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1257,27 +1293,27 @@ msgstr ""
"No se guardaron los cambios en la disposición. Serán perdidos si no los "
"guardas. ¿Deseas continuar?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Añadir una opción para la columna"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Generar contraseña"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generar"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Cambar contraseña"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Más"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1287,258 +1323,258 @@ msgstr ""
"la obtenga. La versión más reciente es %s, y existe desde el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", versión estable más reciente:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "actualizada"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Terminado"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Previo"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Siguiente"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Hoy"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Enero"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Febrero"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Marzo"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Abril"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mayo"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Junio"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Julio"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Agosto"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Septiembre"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Octubre"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Noviembre"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Diciembre"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Lunes"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Martes"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Miércoles"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Jueves"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Viernes"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Ju"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Vi"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Segundo"
@@ -1635,7 +1671,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Bases de datos"
@@ -1702,25 +1738,25 @@ msgid "This MySQL server does not support the %s storage engine."
msgstr ""
"Este servidor MySQL no es compatible con el motor de almacenamiento %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "La base de datos no es válida"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "El nombre de la tabla no es válido"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabla %s ahora se llama %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "No se pudieron guardar las preferencias de interfaz"
@@ -1752,10 +1788,9 @@ msgstr "¡No se halló el tema %s!"
msgid "Theme path not found for theme %s!"
msgstr "¡No se halló la ruta del tema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Estilo"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1763,7 +1798,6 @@ msgstr "No se estableció la conexión: los parámetros están incorrectos."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
@@ -1919,7 +1953,7 @@ msgstr "compartido"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tablas"
@@ -2005,7 +2039,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Servidor"
@@ -2053,7 +2086,7 @@ msgid "Documentation"
msgstr "Documentación"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "consulta SQL"
@@ -2061,119 +2094,119 @@ msgstr "consulta SQL"
msgid "MySQL said: "
msgstr "MySQL ha dicho: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "No pudo conectarse a un validador de SQL!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Omitir la explicación del SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Sin código PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Actualizar"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Saltar la validación de SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Edición en linea de esta consulta"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "En línea"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Perfilando"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a las %H:%M:%S"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos y %s segundos"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Empezar"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Previo"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar a la base de datos "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2185,43 +2218,43 @@ msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s"
msgid "Structure"
msgstr "Estructura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Insertar"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operaciones"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Buscar en su ordenador:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
"Seleccionar directorio en el servidor web para subir los archivos %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"No se puede acceder al directorio que seleccionó para subir los archivos"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "No hay archivos para subir"
@@ -2591,7 +2624,7 @@ msgstr "Ceja predeterminada de la tabla"
msgid "Show binary contents as HEX by default"
msgstr "Mostrar el contenido binario en HEXadecimal por defecto"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Mostrar contenido binario como HEXadecimal"
@@ -4669,7 +4702,7 @@ msgstr "Diseñador"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegios"
@@ -4681,7 +4714,7 @@ msgstr "Rutinas"
msgid "Return type"
msgstr "Muestre el tipo"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4869,9 +4902,9 @@ msgstr "Conjunto de caracteres del archivo:"
msgid "Compression:"
msgstr "Compresión:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Ninguna"
@@ -5006,37 +5039,53 @@ msgstr "Opciones específicas al formato:"
msgid "Language"
msgstr "Idioma"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Restaurar orden de las columnas"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Arrastrar para reordenar"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Pulsar para ordenar"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Pulsar para marcar/desmarcar"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d no es un número de fila válido."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "fila(s) iniciando en la fila #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (encabezados rotados)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "en modo %s y repetir los encabezados cada %s celdas"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Ordenar según la clave"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5049,94 +5098,94 @@ msgstr "Ordenar según la clave"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opciones"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Textos parciales"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Textos completos"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Clave relacional"
# Display option apparently related to
# http://www.phpmyadmin.net/documentation/#relation
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Mostrar columna de relación"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Mostrar contenido binario"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Mostrar contenido BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformación del navegador"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Copiar"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "La fila se ha borrado"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Matar el proceso"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "en la consulta"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Mostrando registros"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tardó %01.4f seg"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Cambiar"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operaciones sobre los resultados de la consulta"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Previsualización para imprimir (documento completo)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Mostrar gráfico"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Crear vista"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "No se encontró el enlace"
@@ -5186,7 +5235,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Reserva de búfers"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Estado del InnoDB"
@@ -5703,7 +5752,7 @@ msgstr "Tipos MIME disponibles"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Servidor"
@@ -5928,7 +5977,7 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Generado por"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6100,7 +6149,7 @@ msgstr "Agregar prefijo a la tabla"
msgid "Add prefix"
msgstr "Agregar prefijo"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Sin cambios"
@@ -6433,14 +6482,14 @@ msgid "Slave status"
msgstr "Estado del esclavo"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valor"
@@ -6669,20 +6718,20 @@ msgid "Synchronize"
msgstr "Sincronizar"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Registro binario"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variables"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Juegos de caracteres"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motores"
@@ -6727,11 +6776,11 @@ msgstr "Limpiar"
msgid "Columns"
msgstr "Columnas"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Guardar esta consulta en favoritos"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Permitir que todo usuario pueda acceder a este favorito"
@@ -6962,7 +7011,7 @@ msgstr "definición de la PARTICIÓN"
msgid "+ Add a new value"
msgstr "+ Agregar un nuevo valor"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tiempo"
@@ -7165,7 +7214,7 @@ msgid "Protocol version"
msgstr "Versión del protocolo"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Usuario"
@@ -7441,7 +7490,7 @@ msgstr "Agregar"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operador"
@@ -7624,17 +7673,17 @@ msgstr "El archivo no existe"
msgid "Select binary log to view"
msgstr "Seleccionar el registro binario que desea examinar"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Archivos"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncar las consultas que ya se han mostrado"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Mostrar las consultas enteras"
@@ -8176,7 +8225,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Mostrar el estado del maestro"
@@ -8328,12 +8377,32 @@ msgstr ""
"Este servidor no está configurado como esclavo en un proceso de replicación. "
"¿Desea configurarlo ?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Velocidad de actualización"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "minutes"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "minutos"
+msgstr[1] "minutos"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "segundo"
+msgstr[1] "segundo"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "El proceso %s fue destruido exitosamente."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8341,166 +8410,123 @@ msgstr ""
"phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido "
"cerrado."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Gestor"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Cache de consultas"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Procesos"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Datos temporales"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Caché de claves"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Vínculos (Joins)"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Ordenación"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Coordinador de transacción"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Vaciar el cache de todas las tablas"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Mostrar las tablas que están abiertas"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Mostrar los hosts esclavos"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Mostrar el estado del esclavo"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Vaciar el cache de consultas"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Información acerca del tiempo de ejecución del proceso principal"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Elección del servidor"
+msgstr "Tráfico del servidor"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Estadísticas de Consulta"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Ver la tabla de estado del esclavo"
+msgstr "Todas las variables de estado"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Actualizar"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Segundo"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Segundo"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuto"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "No cambiar la contraseña"
+msgstr "Que contengan la palabra:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Mostrar las tablas que están abiertas"
+msgstr "Mostrar sólo valores de alerta"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrar por categoría..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "Enlaces relacionados"
+msgstr "Enlaces relacionados:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "por hora"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "por segundo"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tipo de consulta"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "#"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Tráfico de red desde el inicio: %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Este servidor MySQL ha estado activo durante %s. Se inició en %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8508,35 +8534,35 @@ msgstr ""
"Este servidor MySQL trabaja como maestro y esclavo en un "
"proceso de replicación ."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
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:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
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:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Estado de replicación"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Tráfico"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8545,45 +8571,39 @@ msgstr ""
"pueden excederse. Por tanto, las estadísticas reportadas por el servidor "
"MySQL pueden ser incorrectas."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Recibido"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Conexiones"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Número máx. de conexiones concurrentes"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Intentos fallidos"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesos"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "Identificación"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Whether to enable SSL for connection to MySQL server."
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Si habilitar SSL para la conexión al servidor MySQL o no."
+msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8593,18 +8613,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
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:844
+#: server_status.php:853
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 "
@@ -8617,11 +8638,11 @@ msgstr ""
"tmp_table_size para hacer que las tablas temporales se basen en memoria en "
"lugar de basarse en disco."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "El número de archivos temporales que fueron creados por mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8629,7 +8650,7 @@ msgstr ""
"El número de tablas temporales en memoria creadas automáticamente por el "
"servidor mientras se ejecutaban las sentencias."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8637,7 +8658,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:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8645,23 +8666,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "El número de filas INSERT DELAYED escritas."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "El número de sentencias FLUSH ejecutadas."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "El número de sentencias COMMIT internas."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8672,7 +8693,7 @@ msgstr ""
"Handler_discover indica el número ocasiones que las tablas han sido "
"descubiertas."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8683,7 +8704,7 @@ msgstr ""
"de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, "
"asumiendo que col1 está indizado."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8692,7 +8713,7 @@ msgstr ""
"este valor es alto, es una buena indicación de que sus consultas y tablas "
"están indexadas apropiadamente."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8702,7 +8723,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8711,7 +8732,7 @@ msgstr ""
"clave. Este método de lectura se usa principalmente para optimizar a ORDER "
"BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8724,7 +8745,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:859
+#: server_status.php:868
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 "
@@ -8737,37 +8758,37 @@ msgstr ""
"o que sus consultas no están escritas para tomar ventaja de los índices que "
"tiene."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "El número de sentencias ROLLBACK internas."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "El número de páginas actualmente sucias."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "El número de páginas libres."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8777,7 +8798,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:868
+#: server_status.php:877
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 "
@@ -8789,11 +8810,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Tamaño total de la reserva de búfers, en páginas."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8802,7 +8823,7 @@ msgstr ""
"una consulta va a escanear una gran porción de una tabla pero en orden "
"aleatorio."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8810,11 +8831,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:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8822,7 +8843,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:874
+#: server_status.php:883
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 "
@@ -8837,55 +8858,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:875
+#: server_status.php:884
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:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "El número de operaciones fsync() hechas hasta el momento."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "El número actual de operaciones fsync() pendientes."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "El número actual de lecturas pendientes."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "El número actual de escrituras pendientess."
-#: server_status.php:880
+#: server_status.php:889
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:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "El número total de lectura de datos."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "El número total de escritura de datos."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "La cantidad de datos escritas hasta el momento, en bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8893,35 +8914,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "El número de solicitudes de escritura al registro."
-#: server_status.php:888
+#: server_status.php:897
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:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "El número de fsyncs pendientes al archivo de registro."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Escrituras pendientes al archivo de registro."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "El número de bytes escritos al archivo de registro."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "El número de páginas creadas."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8930,52 +8951,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "El número de páginas leídas."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "El número de páginas escritas."
-#: server_status.php:897
+#: server_status.php:906
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:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "El número de filas eliminadas de tablas InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "El número de filas insertadas en tablas InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "El número de filas leídas de las tablas InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "El número de filas actualizadas en tablas InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8984,7 +9005,7 @@ msgstr ""
"aún no han sido volcados al disco. Antes se conocía como "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8992,7 +9013,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:908
+#: server_status.php:917
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 "
@@ -9002,11 +9023,11 @@ msgstr ""
"de desbordamiento que indica el número máximo de bloques que algún momento "
"se llegaron a usar."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9017,15 +9038,15 @@ msgstr ""
"demasiado pequeño. La tasa de fallos en el caché puede calcularse como "
"Key_reads/Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9036,17 +9057,19 @@ 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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"El máximo número de conexiones que han sido utilizadas simultáneamente desde "
+"que inició el servidor."
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9054,40 +9077,43 @@ 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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "El número de archivos que están abiertos."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "El número de tablas que están abiertas."
-#: server_status.php:920
+#: server_status.php:929
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 ""
+"Cantidad de bloques de memoria libre en la cache de consultas. Cantidades "
+"altas pueden indicar problemas de fragmentación que pueden ser solucionados "
+"ejecutando la consulta FLUSH QUERY CACHE."
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "La cantidad de memoria libre para el cache de consultas."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "El número de hits al cache."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "El número de consultas añadidos al cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9100,7 +9126,7 @@ msgstr ""
"la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben "
"ser removidas del cache."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9108,20 +9134,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "El número de consultas registradas en el cache."
-#: server_status.php:927
+#: server_status.php:936
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:928
+#: server_status.php:937
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:929
+#: server_status.php:938
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."
@@ -9129,13 +9155,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9144,7 +9170,7 @@ msgstr ""
"de cada fila. (Si no es 0, deberá revisar los índices de sus tablas "
"cuidadosamente.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9152,19 +9178,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9172,12 +9198,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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9185,14 +9211,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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9202,23 +9228,23 @@ msgstr ""
"hacer. Si este valor es grande, debe considerar incrementar el valor de la "
"varible de sistema sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
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:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "El número de filas sorted."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9230,7 +9256,7 @@ msgstr ""
"primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o "
"usar replicación."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9240,11 +9266,11 @@ msgstr ""
"puede calcularse como Threads_created/Connections. Si este valor es rojo, "
"debe incrementar su thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "El número de conexiones abiertas actualmente."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9256,7 +9282,7 @@ msgstr ""
"(Normalmente esto no aporta una mejoría notable en el rendimiento si usted "
"tiene una buena implementación de procesos.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "El número de procesos que no están en reposo."
@@ -9380,7 +9406,7 @@ msgstr "Variables y parámetros del servidor"
msgid "Session value"
msgstr "Valor de la sesión"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valor global"
@@ -9710,40 +9736,40 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"La clave debe contener letras, números [em]y[/em] caracteres especiales."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Mostrar los valores foráneos"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
"Utilizando el favorito \"%s\" como consulta predeterminada para examinar."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "La Id de la fila insertada es: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Mostrando la consulta SQL"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas con los índices de la tabla `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiqueta"
@@ -9825,10 +9851,8 @@ msgid "Line"
msgstr "Línea"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "En línea"
+msgstr "Ranuras"
#: tbl_chart.php:89
msgid "Pie"
@@ -9839,50 +9863,36 @@ msgid "Stacked"
msgstr "Apiladas"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Título del reporte:"
+msgstr "Título del gráfico"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Eje X:"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "Consultas SQL"
+msgstr "Series:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Columnas para las áreas de texto"
+msgstr "Columnas restantes"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "Etiqueta del eje X"
+msgstr "Etiqueta del eje X:"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Valor"
+msgstr "Valores X"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "Etiqueta del eje Y"
+msgstr "Etiqueta del eje Y:"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Valor"
+msgstr "Valores Y"
#: tbl_create.php:56
#, php-format
@@ -10124,24 +10134,24 @@ msgstr "Restricción de clave foránea"
msgid "No rows selected"
msgstr "No se seleccionaron filas"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Seleccionar campos (al menos uno):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
"Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "registros por página"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Mostrar en este orden:"
@@ -10423,6 +10433,12 @@ msgstr "VER nombre"
msgid "Rename view to"
msgstr "Cambiar el nombre de la vista a"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Estilo"
+
+#~ msgid "seconds"
+#~ msgstr "segundos"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Comparación del tiempo de ejecución de Consulta (en microsegundos)"
@@ -10501,7 +10517,6 @@ msgstr "Cambiar el nombre de la vista a"
#~ msgid "Bar type"
#~ msgstr "Tipo de barra"
-# It is the opposite of "stacked"
#~ msgid "Multi"
#~ msgstr "Separadas"
@@ -10541,7 +10556,6 @@ msgstr "Cambiar el nombre de la vista a"
#~ msgid "Add a new User"
#~ msgstr "Agregar un nuevo usuario"
-# Defines where row-related links are located
#~ msgid "Show table row links on left side"
#~ msgstr "Mostrar enlaces a la izquierda de filas de tabla"
diff --git a/po/et.po b/po/et.po
index c3034354f6..4f7db55227 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Näita kõiki"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"sulgenud või Teie sirvija ei luba akendevahelist suhtlist tänu "
"turvaseadetele."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Otsi"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "Otsi"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Võtme nimi"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Kirjeldus"
@@ -134,7 +134,7 @@ msgstr "Tabeli kommentaarid"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -149,7 +149,7 @@ msgstr "Väljade nimed"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tüüp"
@@ -165,7 +165,7 @@ msgstr "Tüüp"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "Lingib "
msgid "Comments"
msgstr "Kommentaarid"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "Kommentaarid"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ei"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "Ei"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "Vaata andmebaasi väljundit (skeemi)"
msgid "No tables found in database."
msgstr "Andmebaasist ei leitud tabeleid."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Märgista kõik"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Puhasta kõik"
@@ -270,7 +270,7 @@ msgstr "Andmebaas %s on kopeeritud %s"
msgid "Rename database to"
msgstr "Nimeta andmebaas ümber"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Käsk"
@@ -334,7 +334,7 @@ msgstr "Mine kopeeritud andmebaasile"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -364,7 +364,7 @@ msgstr "Seoseskeem"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabel"
@@ -380,7 +380,7 @@ msgstr "Ridu"
msgid "Size"
msgstr "Suurus"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "kasutusel"
@@ -406,7 +406,7 @@ msgstr "Viimane muudatus"
msgid "Last check"
msgstr "Viimane vaatamine"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -427,25 +427,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sorteeri"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Kasvav"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Kahanev"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Näita"
@@ -468,7 +468,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "või"
@@ -501,39 +501,39 @@ msgstr "Kasuta tabeleid"
msgid "SQL query on database %s :"
msgstr "SQL-päring andmebaasist %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Lae päring"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ligipääs keelatud"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "vähemalt üks sõnadest"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "kõik sõnadest"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "täpne fraas"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "regulaaravaldisena"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Otsingu tulemused \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -541,20 +541,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s vaste(t) tabelis %s "
msgstr[1] "%s vaste(t) tabelis %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Vaata"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Tabeli andmete salvestamine"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -565,7 +565,7 @@ msgstr "Tabeli andmete salvestamine"
msgid "Delete"
msgstr "Kustuta"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -573,173 +573,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "Kokku: %s vaste(t)"
msgstr[1] "Kokku: %s vaste(t)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Otsi andmebaasist"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Sõna(d) või väärtus(ed) otsinguks (lühend: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Leia:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Sõnad on eraldatud tühikuga (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Otsi tabeli(te)st:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Otsi tabeli(te)st:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Andmebaasist ei leitud tabeleid."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s tühjendatud"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Vaade %s on kustutatud"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s kustutatud"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vaade"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Tiraeerimine"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Summa"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Valitud:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Märgista kõik"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Puhasta kõik"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Kontrolli ülekulusid"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspordi"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Trükivaade"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Tühjenda"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Kustuta"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Kontrolli tabelit"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimiseeri tabelit"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Paranda tabelit"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analüüsi tabelit"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "Pole andmebaase"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Asenda tabeli andmed failiga"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Asenda tabeli andmed failiga"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Andmesõnastik"
@@ -755,9 +755,9 @@ msgstr "Kontrolli tabelit"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Andmebaas"
@@ -775,8 +775,8 @@ msgstr "Loo"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Staatus"
@@ -924,7 +924,7 @@ msgstr "Järjehodja kustutati."
msgid "Showing bookmark"
msgstr "Näitan järjehoidjat"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Järjehoidja %s loodud"
@@ -952,7 +952,7 @@ msgstr ""
"pikenda."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -978,15 +978,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" käsud keelatud."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Kas te tõesti tahate "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!"
@@ -1090,184 +1090,226 @@ msgstr "Eemalda valitud kasutajad"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Serveri valik"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL-päring"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Kokku"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Lokaalne"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Protsessid"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Nimeta andmebaas ümber"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Nimeta andmebaas ümber"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Kopeeri andmebaas"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Tähetabel"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Loo tabel"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Kasuta tabeleid"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Otsi"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL-päring"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL-päring"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Vaata"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Kustutan %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL-päring"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL-päring"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Mootor"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muuda"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Serveri valik"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL-päring"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Kokku"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Serveri valik"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Protsessid"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Ühendused"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL-päring"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Rea statistika"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Lokaalne"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Protsessid"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Nimeta andmebaas ümber"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Nimeta andmebaas ümber"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Kopeeri andmebaas"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Tähetabel"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Loo tabel"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Kasuta tabeleid"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Otsi"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL-päring"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL-päring"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Vaata"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Kustutan %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL-päring"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL-päring"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Mootor"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1275,77 +1317,77 @@ msgstr "Muuda"
msgid "Save"
msgstr "Salvesta"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Peida"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-päring"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-päring"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoreeri"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Vali eelistus võti (referenced key)"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Vali võõrvõti(Foreign Key)"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Palun vali primaarne või unkaalne võti"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Genereeri parool"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genereeri"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Muuda parooli"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Esm"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1353,128 +1395,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Suhte loomine (relation)"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Pole andmebaase"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "Andmed"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Eelmine"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Järgmine"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kokku"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binaarne"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mär"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Veb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mär"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1482,176 +1524,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Det"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Püh"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Esm"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Tei"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ree"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Lau"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Püh"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Esm"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Tei"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Kol"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Nel"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ree"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lau"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "kasutusel"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1744,7 +1786,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Andmebaasid"
@@ -1814,25 +1856,25 @@ msgstr "%s on keelatud selles MySQL serveris."
msgid "This MySQL server does not support the %s storage engine."
msgstr "See MySQL server ei toeta %s varundusmootorit."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Vigane andmebaas"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Vigane tabeli nimi"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Viga tabeli nime %1$s muutimsel %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabel %s on ümber nimetatud %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1864,10 +1906,9 @@ msgstr "Ei leia teemat %s!"
msgid "Theme path not found for theme %s!"
msgstr "Ei leia kataloogi teemale %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Teema / Stiil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1875,7 +1916,6 @@ msgstr "Ei saa ühendust: vigased seaded."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Tere tulemast %s"
@@ -2026,7 +2066,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabelid"
@@ -2115,7 +2155,6 @@ msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2163,7 +2202,7 @@ msgid "Documentation"
msgstr "Dokumentatsioon"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-päring"
@@ -2171,121 +2210,121 @@ msgstr "SQL-päring"
msgid "MySQL said: "
msgstr "MySQL ütles: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Seleta SQL-i"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Jäta SQL-i seletamine vahele"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "ilma PHP koodita"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Loo PHP kood"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Uuenda"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Jäta SQL-i kontroll vahele"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Kontrolli SQL-i"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mootor"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Baiti"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y kell %H:%M:%S"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Algus"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Eelmine"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Lõpp"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Hüppa andmebaasile "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2297,42 +2336,42 @@ msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s"
msgid "Structure"
msgstr "Struktuur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Lisa"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Tegevused"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "webiserveri üleslaadimiskataloogi"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2691,7 +2730,7 @@ msgstr "Nimeta andmebaas ümber"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4687,7 +4726,7 @@ msgstr "Kujundaja"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privileegid"
@@ -4699,7 +4738,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4912,9 +4951,9 @@ msgstr "Faili tähetabel:"
msgid "Compression:"
msgstr "Pakkimine"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Pole"
@@ -5062,39 +5101,57 @@ msgstr ""
msgid "Language"
msgstr "Keel"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Lisa/Kustuta välja veerud"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d ei ole õige reanumber."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "read alates"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horisontaalselt"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horisontaalne (pööratud päis)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikaalselt"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "näita %s and korda pealkirju iga %s järel"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sorteeri võtme järgi"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5107,103 +5164,103 @@ msgstr "Sorteeri võtme järgi"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Tegevused"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Lühendatud tekstid"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Täistekstid"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Seoseskeem"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Seoseskeem"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browseri transformatsioon"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopeeri"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Rida kustutatud"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Tapa"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "päringus"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Näita ridu"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "kokku"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Päring kestis %01.4f sek"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Muuda"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Päringu tulemuste tegevused"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Trükivaade (täispikkade tekstidega)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Näita PDF skeemi"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Suhte loomine (relation)"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Linki ei leitud"
@@ -5251,7 +5308,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puhverdusala"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB staatus"
@@ -5738,7 +5795,7 @@ msgstr "Olemasolevad MIME-tüübid"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Masin"
@@ -5948,7 +6005,7 @@ msgstr "SQL tulemus"
msgid "Generated by"
msgstr "Genereerija "
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6112,7 +6169,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Lisa uus väli"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Ei muudetud"
@@ -6441,14 +6498,14 @@ msgid "Slave status"
msgstr "Näita alluvate(slave) staatust"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Muutuja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Väärtus"
@@ -6688,20 +6745,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binaarne logi"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Muutujad"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Tähetabelid"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Mootor"
@@ -6751,11 +6808,11 @@ msgstr "Kalender"
msgid "Columns"
msgstr "Väljade nimed"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Lisa see SQL päring järjehoidjasse"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
@@ -6994,7 +7051,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Lisa uus kasutaja"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Aeg"
@@ -7236,7 +7293,7 @@ msgid "Protocol version"
msgstr "Protokolli versioon"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Kasutaja"
@@ -7513,7 +7570,7 @@ msgstr "Loo"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operaator"
@@ -7703,18 +7760,18 @@ msgstr "\"%s\" tabel ei eksisteeri!"
msgid "Select binary log to view"
msgstr "Valige binaarne logi vaatamiseks"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Väljade arv"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Lühenda näidatavad päringud"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Näita täispikkasid päringuid"
@@ -8245,7 +8302,7 @@ msgstr "Privileegid taaslaeti edukalt."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Näita alluvate(slave) staatust"
@@ -8386,12 +8443,34 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Uuenda"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "kasutusel"
+msgstr[1] "kasutusel"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "sekundis"
+msgstr[1] "sekundis"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Protsess %s katkestati edukalt."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8399,194 +8478,160 @@ msgstr ""
"phpMyAdmin ei suutnud katkestada protsessi %s. Tõenäoliselt on see juba "
"suletud."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Töötleja"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Päringute vahemälu"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Lõimud"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Ajutised andmed "
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Ajastatud lisamised"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Võtme vahemälu"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Liited"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Järjestamine"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Ülekande kordinaator"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Tühjenda (sulge) kõik tabelid"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Näita avatud tabeleid"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Näita alluvaid(slave)"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Näita alluvate(slave) staatust"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Tühjenda päringute vahemälu"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Jooksev informatsioon"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Serveri valik"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Rea statistika"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Uuenda"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "sekundis"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "sekundis"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "kasutusel"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ärge muutke parooli"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Näita avatud tabeleid"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Suhted"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "tunni kohta"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "minutis"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "sekundis"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Päringu tüüp"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "See MySQL server on käinud %s. Käivitusaeg %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Tiraeerimine"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Liiklus"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8594,45 +8639,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Saadud"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Saadetud"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Ühendused"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "maks. parallel ühendusi"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Ebaõnnestunud üritused"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Katkestatud"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Protsessid"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8642,16 +8683,16 @@ msgstr ""
"binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada "
"ülekande Käske (päringuid)."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8662,11 +8703,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Mitu ajutist faili mysqld on loonud."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8674,7 +8715,7 @@ msgstr ""
"Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, "
"päringuid käivitades."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8682,7 +8723,7 @@ msgstr ""
"Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti "
"korduv võti)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8690,23 +8731,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED ridasid loodud."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "FLUSH käskude arv."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Sisemiste COMMIT käskude arv."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Mitu korda rida kustutati tabelist."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8716,7 +8757,7 @@ msgstr ""
"mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus"
"(discovery). Handler_discover annab mitu korda on tabel leitud."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8726,7 +8767,7 @@ msgstr ""
"server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, "
"arvates et col1 indekseeritud."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8734,7 +8775,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:856
+#: server_status.php:865
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 "
@@ -8743,7 +8784,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8751,7 +8792,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:858
+#: server_status.php:867
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 "
@@ -8763,7 +8804,7 @@ msgstr ""
"mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei "
"kasuta võtmeid korralikult."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8775,35 +8816,35 @@ msgstr ""
"korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta "
"eeliseid sinu loodud indeksitest."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Mitu korda käivitati sisemine ROLLBACK lausung."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Mitu korda uuendati tabeli rida."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Mitu korda lisati uus rida tabelisse."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Mitu lehekülge on mustad."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Mitu puu lehekülge."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8812,7 +8853,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:868
+#: server_status.php:877
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 "
@@ -8824,11 +8865,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Kogu puhvris suurus, lehtedes."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8836,7 +8877,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8844,11 +8885,11 @@ msgstr ""
"Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb "
"järjestikulist kogu tabeli skaneerimist."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Mitu loogilist lugemist InnoDB on teinud."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8856,7 +8897,7 @@ msgstr ""
"Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja "
"tegi üksiku lehe lugemise."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8869,55 +8910,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Mitu korda kirjutas InnoDB puhvrisse."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Mitu fsync() operatsiooni siiani."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Mitu hetkel ootel fsync() operatsiooni."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Mitu ootel lugemist."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Mitu ootel kirjutamist."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Suurus kui palju andmeid on loetud siiani, baitides."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Mitu korda loetud."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Mitu korda andmeid kirjutati."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Suurus palju andmeid on kirjutatud, baitides."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8925,35 +8966,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Mitu logi kirjutamise soovi."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Mitu füüsilist kirjutamist logi faili."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Mitu fsyncs kirjutamist tehtud logi faili."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Mitu ootel logi faili fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "ootel logifaili kirjutamisi."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Mitu baiti on kirjutatud logi faili."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Lehti loodud."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8961,51 +9002,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Lehti loetud."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Lehti kirjutatud."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Mitu rea lukustamist on hetkel ootel."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Keskimne aeg pärides rea lukustust, millisekundites."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Mitu korda pidi rea lukustus ootama."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Mitu rida kustutatud InnoDB tabelitest."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Mitu rida lisati InnoDB tabelitesse."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Mitu rida loetud InnoDB tabelitest."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Mitu rida uuendati InnoDB tabelites."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9013,7 +9054,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:907
+#: server_status.php:916
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."
@@ -9021,7 +9062,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:908
+#: server_status.php:917
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 "
@@ -9030,11 +9071,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9044,15 +9085,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9062,17 +9103,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9080,38 +9121,38 @@ msgstr ""
"Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus "
"kindlasti liiga väike."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Mitu faili on avatud."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Mitu tabelit on hetkel avatud."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Vaba mälu päringute vahemälus."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Leitud Puhvrist."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Mitu päringut on lisatud vahemällu."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9123,7 +9164,7 @@ msgstr ""
"vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised "
"päringud eemaldada puhvrist."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9131,21 +9172,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Mitu päringut on registreeritud vahemälus."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Plokkide koguarv päringute vahemälus."
-#: server_status.php:928
+#: server_status.php:937
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:929
+#: server_status.php:938
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."
@@ -9153,11 +9194,11 @@ msgstr ""
"Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid "
"ettevaatlikult kontrollima oma tabelites indekseid."
-#: server_status.php:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9166,7 +9207,7 @@ msgstr ""
"kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma "
"tabelite indekseid.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9174,17 +9215,17 @@ msgstr ""
"Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline "
"kui see on väga suur.)"
-#: server_status.php:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9192,23 +9233,23 @@ msgstr ""
"Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL "
"alam-lõim(replication slave) proovis ülekandeid."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9217,23 +9258,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Sorteritud ridade arv."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Mitu korda tabeli lukustus jõustus koheselt."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9244,7 +9285,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:945
+#: server_status.php:954
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 "
@@ -9254,11 +9295,11 @@ msgstr ""
"nii Threads_created/Connections. Kui see on punane paksid suurendama "
"thread_cache_size suurust."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Hetkel avatud ühendusi."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9269,7 +9310,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Lõimude arv mis mis hetkel ei maga."
@@ -9394,7 +9435,7 @@ msgstr "Serveri muutujad ja seaded."
msgid "Session value"
msgstr "Sessiooni väärtus"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Üldine väärtus"
@@ -9673,41 +9714,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Vaata väliseid väärtuseid"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Näitan PHP koodina"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Näitan SQL päringut"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Kontrolli SQL-i"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleemid tabeli `%s` indeksitega"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Nimetus"
@@ -10096,25 +10137,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Ridu pole valitud"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Tee \"päring näite järgi\" (lühend: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Vali väljad (vähemalt üks):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Lisa otsinguparameetrid (\"WHERE\" lause sisu):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Ridade arv lehel"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Näitamise järjekord:"
@@ -10414,6 +10455,14 @@ msgstr ""
msgid "Rename view to"
msgstr "Nimeta tabel ümber"
+#~ msgid "Theme / Style"
+#~ msgstr "Teema / Stiil"
+
+#, fuzzy
+#~| msgid "per second"
+#~ msgid "seconds"
+#~ msgstr "sekundis"
+
#, fuzzy
#~| msgid "Query results operations"
#~ msgid "Query results"
diff --git a/po/eu.po b/po/eu.po
index 2dd2159554..98e6003193 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Dena erakutsi"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"parent window or your browser is blocking cross-window updates of your "
"security settings"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Bilatu"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Bilatu"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Klabearen hitza"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Deskribapena"
@@ -135,7 +135,7 @@ msgstr "Taularen iruzkinak"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -150,7 +150,7 @@ msgstr "Zutabe izenak"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Mota"
@@ -166,7 +166,7 @@ msgstr "Mota"
msgid "Null"
msgstr "Nulua"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Estekak honi:"
msgid "Comments"
msgstr "Iruzkinak"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Iruzkinak"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ez"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Ez"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Ikusi datu-basearen iraulketa (eskema)"
msgid "No tables found in database."
msgstr "Ez da taularik aurkitu datu-basean."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Dena hautatu"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Desautatu dena"
@@ -273,7 +273,7 @@ msgstr "%s taula hona kopiatua izan da: %s."
msgid "Rename database to"
msgstr "Taula berrizendatu izen honetara: "
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Komandoa"
@@ -338,7 +338,7 @@ msgstr "Kopiatutako taulara aldatu"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -368,7 +368,7 @@ msgstr "Erlazio-eskema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Taula"
@@ -384,7 +384,7 @@ msgstr "Errenkadak"
msgid "Size"
msgstr "Tamaina"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "lanean"
@@ -410,7 +410,7 @@ msgstr "Azken eguneraketa"
msgid "Last check"
msgstr "Azken egiaztapena"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -431,25 +431,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Ordenatu"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Goranzko"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Beherantz"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Erakutsi"
@@ -472,7 +472,7 @@ msgstr "Ezabatu"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Edo"
@@ -505,39 +505,39 @@ msgstr "Taulak erabili"
msgid "SQL query on database %s :"
msgstr "SQL-kontsulta %s datu-basean:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Kontsulta bidali"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Sarbidea ukatua"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "hitz hauetariko bat gutxienez"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "hitz guztiak"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "esaldi zehatza"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "adierazpen erregular moduan"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Bilaketaren emaitzak: \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -545,20 +545,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s emaitza(k) %s taulan"
msgstr[1] "%s emaitza(k) %s taulan"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Arakatu"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Taula honen datuak irauli"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -569,7 +569,7 @@ msgstr "Taula honen datuak irauli"
msgid "Delete"
msgstr "Ezabatu"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -577,173 +577,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "Guztira: %s emaitza(k)"
msgstr[1] "Guztira: %s emaitza(k)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Datu-basean bilatu"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Aurkitu:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Hitzak \"zuriune\" karakterrarekin bereiztuta daude (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Taul(ar)en barnean:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Taul(ar)en barnean:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Ez da taularik aurkitu datu-basean."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "%s taula hustu egin da"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "%s eremua ezabatu da"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "%s taula ezabatu egin da"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "Erlazioak"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Gehiketa"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Ikurdunak:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Guztiak egiaztatu"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desautatu dena"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Arazteko hondakinak egiaztatu"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Esportatu"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Inprimatzeko ikuspegia"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Hutsik"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Ezabatu"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Taula egiaztatu"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Taula optimizatu"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Taula konpondu"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Taula aztertu"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Taularen datuak fitxategiarekin ordezkatu "
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Taularen datuak fitxategiarekin ordezkatu "
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datu-hiztegia"
@@ -758,9 +758,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Datu-basea"
@@ -777,8 +777,8 @@ msgstr "Sortu"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Egoera"
@@ -918,7 +918,7 @@ msgstr "Gordetako kontsulta ezabatu da."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -941,7 +941,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -969,15 +969,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" sententziak ezgaituta daude."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Benetan nahi al duzu "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1076,178 +1076,220 @@ msgstr "Hautatutako erabiltzaileak baztertu"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Zerbitzariaren hautaketa"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL kontsulta"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Gutira"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Lokal"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Prozesuak"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-msgid "Renaming Databases"
-msgstr "Taula berrizendatu izen honetara: "
-
-#: js/messages.php:92
-#, fuzzy
-msgid "Reload Database"
-msgstr "Taula berrizendatu izen honetara: "
-
-#: js/messages.php:93
-#, fuzzy
-msgid "Copying Database"
-msgstr "Datu-baserik ez"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Karaktere-jokoa"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Orri berri bat sortu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Taulak erabili"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Bilatu"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL kontsulta"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL kontsulta"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Arakatu"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "%s ezabatzen"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL kontsulta"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL kontsulta"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editatu"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Zerbitzariaren hautaketa"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL kontsulta"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Gutira"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Zerbitzariaren hautaketa"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Prozesuak"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Konexioak"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL kontsulta"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Errenkadaren estatistikak"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Lokal"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Prozesuak"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+msgid "Renaming Databases"
+msgstr "Taula berrizendatu izen honetara: "
+
+#: js/messages.php:105
+#, fuzzy
+msgid "Reload Database"
+msgstr "Taula berrizendatu izen honetara: "
+
+#: js/messages.php:106
+#, fuzzy
+msgid "Copying Database"
+msgstr "Datu-baserik ez"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Karaktere-jokoa"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Orri berri bat sortu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Taulak erabili"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Bilatu"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL kontsulta"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL kontsulta"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Arakatu"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "%s ezabatzen"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL kontsulta"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL kontsulta"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1255,78 +1297,78 @@ msgstr "Editatu"
msgid "Save"
msgstr "Gorde"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL kontsulta"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL kontsulta"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ezikusi"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Egilea:"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Astel"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1334,128 +1376,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Datu-baserik ez"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Batez"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Aurrekoa"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Hurrengoa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gutira"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binarioa "
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Api"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Eka"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Uzt"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Abu"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Urr"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1463,176 +1505,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Abe"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Iga"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Astel"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Astea"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Osti"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Lar"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Iga"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Astel"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Astea"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Astez"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Oste"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Osti"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lar"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lanean"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1724,7 +1766,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Datu-baseak"
@@ -1789,25 +1831,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "%s taula %s-(e)ra berrizendatua izan da"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1839,9 +1881,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1850,7 +1891,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Ongietorriak %s(e)ra"
@@ -1997,7 +2037,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Taulak"
@@ -2084,7 +2124,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Zerbitzaria"
@@ -2132,7 +2171,7 @@ msgid "Documentation"
msgstr "Dokumentazioa"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL kontsulta"
@@ -2140,119 +2179,119 @@ msgstr "SQL kontsulta"
msgid "MySQL said: "
msgstr "MySQL-ek zera dio: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL-a azaldu"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL-ren azalpena saltatu"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP Koderik gabe"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP kodea sortu"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL-ren balidapena saltatu"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL balidatu"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Byte"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y-%m-%d, %H:%M:%S"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s egun, %s ordu, %s minutu eta %s segundu"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Hasi"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Aurrekoa"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Amaiera"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" datu-basera joan."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2264,42 +2303,42 @@ msgstr ""
msgid "Structure"
msgstr "Egitura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Txertatu"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Eragiketak"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2656,7 +2695,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4624,7 +4663,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Pribilegioak"
@@ -4636,7 +4675,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4839,9 +4878,9 @@ msgstr "Fitxategiaren karaktereen kodeketa:"
msgid "Compression:"
msgstr "Trinkotzea"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Batez"
@@ -4976,39 +5015,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Gehitu/ezabatu irizpide-zutabea"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "errenkada(k) # erregistrotik hasita"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (goiburukoak biratuta)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "bertikal"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s moduan eta goiburukoak errepikatu %s zeldaka"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Gakoaren arabera ordenatu"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5021,103 +5078,103 @@ msgstr "Gakoaren arabera ordenatu"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Eragiketak"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Testu partzialak"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Testu osoak"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Erlazio-eskema"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Erlazio-eskema"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Nabigatzailearen eraldaketa"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Errenkada ezabatua izan da"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Hil"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "kontsultan"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Errenkadak erakusten"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "guztira"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Aldatu"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Inprimatzeko ikuspena (testu osoak)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF eskema erakutsi"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Esteka aurkitugabea"
@@ -5163,7 +5220,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Egoera"
@@ -5629,7 +5686,7 @@ msgstr "MIME-mota erabilgarriak"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Zerbitzaria"
@@ -5837,7 +5894,7 @@ msgstr "SQL emaitza"
msgid "Generated by"
msgstr "Egilea:"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -5995,7 +6052,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Aldaketarik ez"
@@ -6328,14 +6385,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Aldagaia"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "balioa"
@@ -6576,21 +6633,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr " Binarioa "
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Aldagaiak"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Karaktere-multzoa"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6639,11 +6696,11 @@ msgstr ""
msgid "Columns"
msgstr "Zutabe izenak"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Kontsulta hau gogokoetan gorde"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
@@ -6883,7 +6940,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Erabiltzaile berria gehitu"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Denbora"
@@ -7096,7 +7153,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Erabiltzailea"
@@ -7369,7 +7426,7 @@ msgstr "Sortu"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "Eragiketak"
@@ -7558,18 +7615,18 @@ msgstr "\"%s\" taula ez da existitzen!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Eremuak"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Erakutsitako kontultak moztu"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Kontsulta osoak erakutsi"
@@ -8113,7 +8170,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8252,12 +8309,33 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+msgid "Refresh rate"
+msgstr "Egilea:"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "lanean"
+msgstr[1] "lanean"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "segunduko"
+msgstr[1] "segunduko"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s haria arrakastaz ezabatu da."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8265,255 +8343,218 @@ msgstr ""
"phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia "
"izatea."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Kontsulta mota"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Use delayed inserts"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Taulak erakutsi"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
#, fuzzy
msgid "Runtime Information"
msgstr "Saioa hasteko informazioa"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Zerbitzariaren hautaketa"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Errenkadaren estatistikak"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-msgid "Refresh rate"
-msgstr "Egilea:"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "segunduko"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "segunduko"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "lanean"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Pasahitza ez aldatu"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Taulak erakutsi"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Erlazioak"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "orduko"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "minutuko"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "segunduko"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Kontsulta mota"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafikoa"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Jasota"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Bidalita"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Konexioak"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Erratutako saiakerak"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Deuseztatua"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Prozesuak"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8521,78 +8562,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8600,7 +8641,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8608,42 +8649,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8651,33 +8692,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8686,227 +8727,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8914,99 +8955,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9014,18 +9055,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9033,7 +9074,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9156,7 +9197,7 @@ msgstr "Zerbitzariaren aldagai eta ezarpenak"
msgid "Session value"
msgstr "Saioaren balioa"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Balio orokorra"
@@ -9434,41 +9475,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL balidatu"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiketa"
@@ -9853,25 +9894,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Eremuak hautatu (bat gutxienez):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Errenkada kopurua orriko"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Ordena erakutsi:"
@@ -10167,12 +10208,12 @@ msgstr ""
msgid "Rename view to"
msgstr "Taula berrizendatu izen honetara: "
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "seconds"
+#~ msgstr "segunduko"
+
#~ msgid "Query results"
#~ msgstr "SQL emaitza"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Reset egin"
@@ -10180,8 +10221,6 @@ msgstr "Taula berrizendatu izen honetara: "
#~ msgid "Show processes"
#~ msgstr "Erakutsi prozesuak"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reset egin"
@@ -10200,22 +10239,15 @@ msgstr "Taula berrizendatu izen honetara: "
#~ "Kontsultaren estatistikak : Bere hasieratik, %s kontsulta "
#~ "zerbitzarira bidali dira."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Pribilegioak arrakastaz berkargatu dira."
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Kontsulta mota"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Erabiltzaile berria gehitu"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Zerbitzariaren bertsioa"
diff --git a/po/fa.po b/po/fa.po
index 0584580f40..263e8eaa39 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "نمايش همه"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -35,23 +35,23 @@ msgid ""
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "جستجو"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -68,7 +68,7 @@ msgstr "جستجو"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -81,7 +81,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "توضیحات"
@@ -134,7 +134,7 @@ msgstr "توضيحات جدول"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "ستون"
@@ -147,7 +147,7 @@ msgstr "ستون"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "نوع"
@@ -163,7 +163,7 @@ msgstr "نوع"
msgid "Null"
msgstr "خالي"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -192,7 +192,7 @@ msgstr "پيوند به"
msgid "Comments"
msgstr "توضيحات"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -203,12 +203,12 @@ msgstr "توضيحات"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "خير"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -223,7 +223,7 @@ msgstr "خير"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -242,11 +242,11 @@ msgstr "نمايش الگوي پايگاه داده"
msgid "No tables found in database."
msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "انتخاب همه"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "عدم انتخاب همه"
@@ -268,7 +268,7 @@ msgstr "پایگاه داده %s در %s کپی شد"
msgid "Rename database to"
msgstr "تغییر نام پایگاه داده به"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "دستور"
@@ -329,7 +329,7 @@ msgstr "تعویض به پایگاه داده ی کپی شده"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "ویرایش یا صدور نمای رابطه ای"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "جدول"
@@ -373,7 +373,7 @@ msgstr "سطرها"
msgid "Size"
msgstr "اندازه"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in use"
@@ -399,7 +399,7 @@ msgstr "آخرین به روز رسانی"
msgid "Last check"
msgstr ""
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +418,25 @@ msgid "visual builder"
msgstr "سازنده ی تصویری"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "ترتيب"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "صعودي"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "نزولي"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "نمايش"
@@ -459,7 +459,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "يا"
@@ -490,57 +490,57 @@ msgstr "بكارگيري جدولها"
msgid "SQL query on database %s :"
msgstr "پرس و جوي SQL از پايگاه داده %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Submit Query"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "دسترسي مجاز نيست"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "حداقل يكي از كلمات"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "تمامي كلمات"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "عبارت كامل"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "بعنوان مبين منظم(as regular expression)"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "نتيجه جستجوي \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s عبارت همتا در جدول %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "مشاهده"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "داده های همتا در جدول %s حذف شوند؟"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,64 +551,64 @@ msgstr "داده های همتا در جدول %s حذف شوند؟"
msgid "Delete"
msgstr "حذف"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] ""
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "جستجو در پايگاهداده"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "نوع جستجو :"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "كلمات با علامت فاصله (\" \") جدا ميشوند."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "در جدول(هاي) :"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "در جدول:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "در پايگاه داده هيچ جدولي یافت نشد."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s خالي شد"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "نمای %s حذف گرديد."
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s حذف گرديد"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "پیگردی فعال می باشد."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "پیگردی فعال نمی باشد."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -617,110 +617,110 @@ msgstr ""
"در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه "
"نمایید."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "نمایش"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "مجموع"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "موارد انتخابشده :"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "انتخاب همه"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "عدم انتخاب همه"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "صدور"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "نماي چاپ"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "خالي كردن"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "حذف"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "بررسي جدول"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "بهينهسازي جدول"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "مرمت جدول"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "تحليل جدول"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "جايگزيني دادههاي جدول با پرونده"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "جايگزيني دادههاي جدول با پرونده"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "فرهنگ دادهها"
@@ -735,9 +735,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "پايگاه داده"
@@ -753,8 +753,8 @@ msgstr "ایجاد شده"
msgid "Updated"
msgstr "به روز شده"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr ""
@@ -893,7 +893,7 @@ msgstr "سطر حذف گرديد ."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -916,7 +916,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -942,15 +942,15 @@ msgstr "برای انتخاب کلیک کنبد"
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "دستور \"DROP DATABASE\" غيرفعال ميباشد."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "آيا مطمئن هستيد "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1044,176 +1044,216 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server version"
-msgid "Live traffic chart"
-msgstr "نسخه سرور"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "پرس و جوي SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "جمع كل"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "محلی"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr ""
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-msgid "Renaming Databases"
-msgstr "بازناميدن جدول به"
-
-#: js/messages.php:92
-#, fuzzy
-msgid "Reload Database"
-msgstr "بازناميدن جدول به"
-
-#: js/messages.php:93
-#, fuzzy
-msgid "Copying Database"
-msgstr "No databases"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "You have to choose at least one column to display"
-msgid "Table must have at least one column"
-msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
-
-#: js/messages.php:96
-#, fuzzy
-msgid "Create Table"
-msgstr "ساخت يك صفحه جديد"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "بكارگيري جدولها"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "جستجو"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "پرس و جوي SQL"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "پرس و جوي SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "مشاهده"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "در حال پاک کردن %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "پرس و جوي SQL"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "پرس و جوي SQL"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "موتور"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "ويرايش"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server version"
+msgid "Live traffic chart"
+msgstr "نسخه سرور"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "پرس و جوي SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "جمع كل"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server version"
+msgid "Server traffic (in KiB)"
+msgstr "نسخه سرور"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr ""
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "پرس و جوي SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "آمار سطرها"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "محلی"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr ""
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+msgid "Renaming Databases"
+msgstr "بازناميدن جدول به"
+
+#: js/messages.php:105
+#, fuzzy
+msgid "Reload Database"
+msgstr "بازناميدن جدول به"
+
+#: js/messages.php:106
+#, fuzzy
+msgid "Copying Database"
+msgstr "No databases"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr ""
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "You have to choose at least one column to display"
+msgid "Table must have at least one column"
+msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
+
+#: js/messages.php:109
+#, fuzzy
+msgid "Create Table"
+msgstr "ساخت يك صفحه جديد"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "بكارگيري جدولها"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "جستجو"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "پرس و جوي SQL"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "پرس و جوي SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "مشاهده"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "در حال پاک کردن %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "پرس و جوي SQL"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "پرس و جوي SQL"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "موتور"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1221,78 +1261,78 @@ msgstr "ويرايش"
msgid "Save"
msgstr "ذخيره"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "پرس و جوي SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "پرس و جوي SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "ستون را براي نمايش انتخاب نماييد"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "توليدشده توسط"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "دوشنبه"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1300,130 +1340,130 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "نسخه قبلی"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "No databases"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "خير"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "قبل"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "بعد"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "جمع كل"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "دودويي"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "آوريل"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "مي"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ژوئن"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "جولاي"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "آگوست"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "اكتبر"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1431,174 +1471,174 @@ msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "دسامبر"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "يكشنبه"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "دوشنبه"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "سهشنبه"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "چهارشنبه"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "پنجشنبه"
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "جمعه"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "شنبه"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "شنبه"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "يكشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "دوشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "سهشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "چهارشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "پنجشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "جمعه"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "شنبه"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "هفته"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "ساعت"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "دقیقه"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr " ثانیه"
@@ -1688,7 +1728,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "پايگاههاي داده"
@@ -1753,25 +1793,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "جدول %s به %s تغيير نام دادهشد"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1803,9 +1843,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1814,7 +1853,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "به %s خوشآمديد"
@@ -1958,7 +1996,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "جدولها"
@@ -2042,7 +2080,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "سرور"
@@ -2090,7 +2127,7 @@ msgid "Documentation"
msgstr "مستندات"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "پرس و جوي SQL"
@@ -2098,123 +2135,123 @@ msgstr "پرس و جوي SQL"
msgid "MySQL said: "
msgstr "پيغام MySQL :"
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "شرح دادن SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
#, fuzzy
msgid "Skip Explain SQL"
msgstr "شرح دادن SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "بدون كد PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "ساخت كد PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
#, fuzzy
msgid "Skip Validate SQL"
msgstr "معتبرسازي SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "معتبرسازي SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "موتور"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "بايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "كيلوبايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "مگا بايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "گيگا بايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "ترابايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "پتا بايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "اگزا بايت"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y ساعت %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "شروع"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "قبل"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "انتها"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2226,41 +2263,41 @@ msgstr ""
msgid "Structure"
msgstr "ساختار"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "درج"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "عمليات"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "پوشهاي را كه براي انتقال فايل انتخاب كردهايد قابل دسترسي نيست."
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2614,7 +2651,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4559,7 +4596,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "امتيازات"
@@ -4571,7 +4608,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4772,9 +4809,9 @@ msgstr "مجموعه كاراكترهاي پرونده:"
msgid "Compression:"
msgstr "فشردهسازي"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "خير"
@@ -4903,39 +4940,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "اضافه يا حذف ستونها"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "برای انتخاب کلیک کنبد"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "سطر(ها) ابتدا از سطر شماره "
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "افقي"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "عمودي"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4948,99 +5005,99 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "عمليات"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
msgid "Partial texts"
msgstr "متغییر"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "كاملا متن"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "سطر حذف گرديد ."
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "جمع كل"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "تغيير"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "نمايش توضيحات ستون"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "نسخه سرور"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "پيوند پيدا نشد"
@@ -5086,7 +5143,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5545,7 +5602,7 @@ msgstr "نمايش خصوصيات"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "ميزبان"
@@ -5753,7 +5810,7 @@ msgstr "نتيجه SQL"
msgid "Generated by"
msgstr "توليدشده توسط"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)."
@@ -5911,7 +5968,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr ""
@@ -6239,14 +6296,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "متغییر"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "مقدار"
@@ -6483,22 +6540,22 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr "دودويي"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
#, fuzzy
msgid "Variables"
msgstr "متغییر"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "موتور"
@@ -6548,11 +6605,11 @@ msgstr "تقویم"
msgid "Columns"
msgstr "نام ستونها"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6772,7 +6829,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "افزودن يك كاربر جديد"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr ""
@@ -6927,7 +6984,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "كاربر"
@@ -7195,7 +7252,7 @@ msgstr "ساختن"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "عمليات"
@@ -7377,18 +7434,18 @@ msgstr "جدول \"%s\" وجود ندارد!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "ستونها"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7903,7 +7960,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8042,262 +8099,244 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+msgid "Refresh rate"
+msgstr "توليدشده توسط"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "دقیقه"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] " ثانیه"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr ""
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "وروديهاي تمديدشده"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "نمايش جدولها"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
#, fuzzy
msgid "Runtime Information"
msgstr "اطلاعات ورود"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server version"
msgid "Server traffic"
msgstr "نسخه سرور"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "آمار سطرها"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-msgid "Refresh rate"
-msgstr "توليدشده توسط"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr " ثانیه"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr " ثانیه"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "دقیقه"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "عدم تغيير اسم رمز"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "نمايش جدولها"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
msgid "Related links:"
msgstr "عمليات"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "در ساعت"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "در دقیقه"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "در ثانیه"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "شناسه"
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8305,78 +8344,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8384,7 +8423,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8392,42 +8431,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8435,33 +8474,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8470,227 +8509,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8698,99 +8737,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8798,18 +8837,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8817,7 +8856,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8938,7 +8977,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -9216,41 +9255,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "معتبرسازي SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9630,25 +9669,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "ستونها را انتخاب نماييد (حداقل يكي)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "تعداد سطرها در هر صفحه"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "ترتيب نمايش:"
@@ -9941,12 +9980,12 @@ msgstr ""
msgid "Rename view to"
msgstr "بازناميدن جدول به"
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "seconds"
+#~ msgstr " ثانیه"
+
#~ msgid "Query results"
#~ msgstr "نتيجه SQL"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Reset"
@@ -9954,23 +9993,16 @@ msgstr "بازناميدن جدول به"
#~ msgid "Show processes"
#~ msgstr "نمايش فرايندها"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reset"
-#, fuzzy
-#~| msgid "Export"
#~ msgid "Bar type"
#~ msgstr "صدور"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "افزودن يك كاربر جديد"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "نسخه سرور"
diff --git a/po/fi.po b/po/fi.po
index 58dcb660a0..7546139d8e 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Näytä kaikki"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät "
"ikkunoiden väliset päivitystoiminnot."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Etsi"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Etsi"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Avaimen nimi"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Kuvaus"
@@ -137,7 +137,7 @@ msgstr "Taulun kommentit"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Sarake"
@@ -150,7 +150,7 @@ msgstr "Sarake"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tyyppi"
@@ -166,7 +166,7 @@ msgstr "Tyyppi"
msgid "Null"
msgstr "Tyhjä"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Linkitys sarakkeeseen:"
msgid "Comments"
msgstr "Kommentit"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Kommentit"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ei"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Ei"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Tee vedos tietokannasta"
msgid "No tables found in database."
msgstr "Tietokannassa ei ole tauluja."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Valitse kaikki"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Poista valinta kaikista"
@@ -271,7 +271,7 @@ msgstr "Tietokanta %s on kopioitu tietokantaan %s"
msgid "Rename database to"
msgstr "Muuta tietokannan nimi"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Komento"
@@ -332,7 +332,7 @@ msgstr "Siirry kopioituun tietokantaan"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Relaatioskeeman muokkaus tai vienti"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Taulu"
@@ -373,7 +373,7 @@ msgstr "Kpl rivejä"
msgid "Size"
msgstr "Koko"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "käytössä"
@@ -399,7 +399,7 @@ msgstr "Viimeksi päivitetty"
msgid "Last check"
msgstr "Viimeksi tarkistettu"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "visuaalinen luonti"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Järjestys"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Nouseva"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Laskeva"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Näytä"
@@ -460,7 +460,7 @@ msgstr "Poista"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Tai"
@@ -489,58 +489,58 @@ msgstr "Käytä tauluja"
msgid "SQL query on database %s :"
msgstr "Suorita SQL-kysely tietokannassa %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Suorita"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Käyttö estetty"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "vähintään yksi sanoista"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "kaikki sanat"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "koko lause"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "regexp-haku"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Tulokset hakusanalla \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s hakutulosta taulussa %s "
msgstr[1] "%s hakutulosta taulussa %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Selaa"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Poista taulusta %s löytyneet tulokset?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,65 +551,65 @@ msgstr "Poista taulusta %s löytyneet tulokset?"
msgid "Delete"
msgstr "Poista"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Yhteensä: %s hakutulosta"
msgstr[1] "Yhteensä: %s hakutulosta"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Hae tietokannasta"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Haettavat sanat tai arvot (%-merkkiä voi käyttää jokerimerkkinä):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Hae:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Sanat erotetaan välilyönnein."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Tauluista:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Sarakkeen sisältä:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Tietokannassa ei ole tauluja."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Taulu %s on tyhjennetty"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Näkymä %s on poistettu"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Taulu %s on poistettu"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Seuranta on käytössä."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Seuranta ei ole käytössä."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -618,112 +618,112 @@ msgstr ""
"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
"%sohjeista%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Näkymä"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Kahdennus"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Summa"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Valitut:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Valitse kaikki"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Poista valinta kaikista"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Valitse taulut, joissa on ylijäämää"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Vienti"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Tulostusversio"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Tyhjennä"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Tuhoa"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Tarkista taulu"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimoi taulu"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Korjaa taulu"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analysoi taulu"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Siirry tauluun"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Korvaa taulun nykyiset rivit tiedostolla"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Korvaa taulun nykyiset rivit tiedostolla"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Tietosanasto"
@@ -738,9 +738,9 @@ msgstr "Seurattavat taulut"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Tietokanta"
@@ -756,8 +756,8 @@ msgstr "Luotu"
msgid "Updated"
msgstr "Päivitetty"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Tila"
@@ -900,7 +900,7 @@ msgstr "Kirjanmerkki on poistettu."
msgid "Showing bookmark"
msgstr "Näytetään kirjanmerkki"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Kirjanmerkki %s luotu"
@@ -928,7 +928,7 @@ msgstr ""
"asti ellei PHP:n suoritusaikarajaa nosteta."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -954,23 +954,21 @@ msgstr "Valitse painamalla"
msgid "Click to unselect"
msgstr "Poista valinta painamalla"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Haluatko varmasti "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
#: js/messages.php:32
-#, fuzzy
-#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to DESTROY a complete table!"
-msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
+msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen taulun!"
#: js/messages.php:33
#, fuzzy
@@ -1041,10 +1039,8 @@ msgstr "Salasanat eivät ole samat!"
#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
-#, fuzzy
-#| msgid "Any user"
msgid "Add user"
-msgstr "Kuka tahansa käyttäjä"
+msgstr "Lisää käyttäjä"
#: js/messages.php:59
msgid "Reloading Privileges"
@@ -1059,166 +1055,208 @@ msgstr "Poista valitut käyttäjät"
msgid "Close"
msgstr "Sulje"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Valitse palvelin"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query box"
-msgid "Live query chart"
-msgstr "Näytä kyselykenttä"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Yhteensä"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Lataa"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Pyynnön käsittely"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Virhe pyynnön käsittelyssä"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Sarakkeen poisto"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Pääavaimen lisäys"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Muuta tietokantojen nimiä"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Lataa tietokanta uudestaan"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Tietokannan kopiointi"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Merkistökoodauksen vaihtaminen"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Taulussa on oltava vähintään yksi kenttä."
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Luo taulu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Käytä tauluja"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Etsi"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide query box"
-msgid "Hide search results"
-msgstr "Piilota SQL-kyselykenttä"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show query box"
-msgid "Show search results"
-msgstr "Näytä kyselykenttä"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Selaa"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Poistetaan: %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Piilota SQL-kyselykenttä"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Näytä kyselykenttä"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Rivin muokkaus"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muokkaa"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Valitse palvelin"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query box"
+msgid "Live query chart"
+msgstr "Näytä kyselykenttä"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Yhteensä"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Valitse palvelin"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Prosessit"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Yhteydet"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL-kyselyt"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Kyselyn ominaisuuksia"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Lataa"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Pyynnön käsittely"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Virhe pyynnön käsittelyssä"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Sarakkeen poisto"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Pääavaimen lisäys"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Muuta tietokantojen nimiä"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Lataa tietokanta uudestaan"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Tietokannan kopiointi"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Merkistökoodauksen vaihtaminen"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Taulussa on oltava vähintään yksi kenttä."
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Luo taulu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Käytä tauluja"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Etsi"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide query box"
+msgid "Hide search results"
+msgstr "Piilota SQL-kyselykenttä"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show query box"
+msgid "Show search results"
+msgstr "Näytä kyselykenttä"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Selaa"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Poistetaan: %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Piilota SQL-kyselykenttä"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Näytä kyselykenttä"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Rivin muokkaus"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1226,71 +1264,67 @@ msgstr "Muokkaa"
msgid "Save"
msgstr "Tallenna"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Kätke"
-#: js/messages.php:122
-#, fuzzy
-#| msgid "Hide query box"
+#: js/messages.php:135
msgid "Hide search criteria"
-msgstr "Piilota SQL-kyselykenttä"
+msgstr "Piilota hakusanat"
-#: js/messages.php:123
-#, fuzzy
-#| msgid "Show query box"
+#: js/messages.php:136
msgid "Show search criteria"
-msgstr "Näytä kyselykenttä"
+msgstr "Näytä hakusanat"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Älä huomioi"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Valitse viitattava avain"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Valitse liiteavain"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Valitse perusavain tai uniikki avain"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Valitse näytettävä sarake"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Lisää asetus sarakkeelle"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Keksi salasana"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Keksi"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Vaihda salasana"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Lisää"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1300,262 +1334,260 @@ msgstr ""
"Uusin versio on %s, ja se on julkaistu %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
-#, fuzzy
-#| msgid "Check for latest version"
+#: js/messages.php:162
msgid ", latest stable version:"
-msgstr "Tarkista uusin versio"
+msgstr "Viimeisin vakaa versio"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Siirry tietokantaan"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Valmis"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Edellinen"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Seuraava"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Tänään"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Tammi"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Helmi"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Maalis"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Huhti"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Touko"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Kesä"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Heinä"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Elo"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Syys"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Loka"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Marras"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Joulu"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Joulu"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Su"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Ti"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Ke"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "To"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Pe"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "La"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "La"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "La"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Vko"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Tunti"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuutti"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekunti"
@@ -1650,7 +1682,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Tietokannat"
@@ -1721,25 +1753,25 @@ msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Virheellinen tietokanta"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Virheellinen taulun nimi"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Taulun %s nimi on nyt %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1771,10 +1803,9 @@ msgstr "Teemaa %s ei löydy!"
msgid "Theme path not found for theme %s!"
msgstr "Teeman %s polkua ei löydy!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Teema/tyyli"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1782,7 +1813,6 @@ msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Tervetuloa, toivottaa %s"
@@ -1934,11 +1964,11 @@ msgstr "Tiedostoa ei voida avata: %s"
#: libraries/bookmark.lib.php:83
msgid "shared"
-msgstr ""
+msgstr "jaettu"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Taulut"
@@ -2019,7 +2049,6 @@ msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Palvelin"
@@ -2067,7 +2096,7 @@ msgid "Documentation"
msgstr "Ohjeet"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-kysely"
@@ -2075,119 +2104,119 @@ msgstr "SQL-kysely"
msgid "MySQL said: "
msgstr "MySQL ilmoittaa: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "SQL-validaattoriin ei voitu yhdistää"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Selitä SQL-kysely"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Älä selitä SQL-kyselyä"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Kätke PHP-koodi"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Näytä PHP-koodi"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Päivitä"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Älä tarkista SQL-kyselyä"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Tarkista SQL-lause"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Tämän kyselyn muokkaus"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Muokkaus"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilointi"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "tavua"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "kt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "Mt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "Gt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "Tt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "Pt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "Et"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y klo %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Alkuun"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Edellinen"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Loppu"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Siirry tietokantaan "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2199,70 +2228,68 @@ msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s"
msgid "Structure"
msgstr "Rakenne"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Lisää rivi"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Toiminnot"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Selaa tietokonettasi:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Valitse verkkopalvelimen lähetyskansiosta %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Lähetettäviä tiedostoja ei ole"
#: libraries/config.values.php:45 libraries/config.values.php:47
#: libraries/config.values.php:51
msgid "Both"
-msgstr ""
+msgstr "Molemmat"
#: libraries/config.values.php:47
msgid "Nowhere"
-msgstr ""
+msgstr "Ei missään"
#: libraries/config.values.php:47
msgid "Left"
-msgstr ""
+msgstr "Vasen"
#: libraries/config.values.php:47
msgid "Right"
-msgstr ""
+msgstr "Oikea"
#: libraries/config.values.php:75
msgid "Open"
-msgstr ""
+msgstr "Avaa"
#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
msgid "Closed"
-msgstr "Sulje"
+msgstr "Suljettu"
#: libraries/config.values.php:96 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
@@ -2411,10 +2438,8 @@ msgid "Improves efficiency of screen refresh"
msgstr ""
#: libraries/config/messages.inc.php:18
-#, fuzzy
-#| msgid "Enabled"
msgid "Enable Ajax"
-msgstr "Päällä"
+msgstr "Aktivoi Ajax"
#: libraries/config/messages.inc.php:19
msgid ""
@@ -2602,7 +2627,7 @@ msgstr "Oletusarvoinen tauluvälilehti"
msgid "Show binary contents as HEX by default"
msgstr "Näytä binäärisisältö oletusarvoisesti heksamuodossa"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Näytä binaarisisältö heksamuodossa"
@@ -2938,11 +2963,11 @@ msgstr "CSV"
#: libraries/config/messages.inc.php:160
msgid "Developer"
-msgstr ""
+msgstr "Kehittäjä"
#: libraries/config/messages.inc.php:161
msgid "Settings for phpMyAdmin developers"
-msgstr ""
+msgstr "Asetukset phpMyAdmin-kehittäjille"
#: libraries/config/messages.inc.php:162
msgid "Edit mode"
@@ -3231,14 +3256,12 @@ msgid "Texy! text"
msgstr "Texy!-teksti"
#: libraries/config/messages.inc.php:230
-#, fuzzy
-#| msgid "Warning"
msgid "Warnings"
-msgstr "Varoitus"
+msgstr "Varoitukset"
#: libraries/config/messages.inc.php:231
msgid "Disable some of the warnings shown by phpMyAdmin"
-msgstr ""
+msgstr "Kytke osa phpMyAdminin näyttämistä varoituksista pois päältä"
#: libraries/config/messages.inc.php:232
msgid ""
@@ -3732,25 +3755,19 @@ msgstr "Oletusarvoinen kyselyikkunavälilehti"
#: libraries/config/messages.inc.php:344
msgid "Query window height (in pixels)"
-msgstr ""
+msgstr "Kyselyikkunan korkeus (pikseleissä)"
#: libraries/config/messages.inc.php:345
-#, fuzzy
-#| msgid "Query window"
msgid "Query window height"
-msgstr "Kyselyikkuna"
+msgstr "Kyselyikkunan korkeus"
#: libraries/config/messages.inc.php:346
-#, fuzzy
-#| msgid "Query window"
msgid "Query window width (in pixels)"
-msgstr "Kyselyikkuna"
+msgstr "Kyselyikkunan leveys (pikseleissä)"
#: libraries/config/messages.inc.php:347
-#, fuzzy
-#| msgid "Query window"
msgid "Query window width"
-msgstr "Kyselyikkuna"
+msgstr "Kyselyikkunan leveys"
#: libraries/config/messages.inc.php:348
msgid "Select which functions will be used for character set conversion"
@@ -4756,7 +4773,7 @@ msgstr "Suunnittelija"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Käyttöoikeudet"
@@ -4768,7 +4785,7 @@ msgstr "Rutiinit"
msgid "Return type"
msgstr "Paluutyyppi"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4815,10 +4832,8 @@ msgid "Password Hashing"
msgstr "Salasanan salaus"
#: libraries/display_change_password.lib.php:65
-#, fuzzy
-#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
-msgstr "MySQL 4.0 -yhteensopiva"
+msgstr "MySQL 4.0 -yhteensopiva"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
@@ -4989,29 +5004,23 @@ msgstr "Tiedoston merkistö:"
msgid "Compression:"
msgstr "Pakkaus"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Ei mitään"
#: libraries/display_export.lib.php:315
-#, fuzzy
-#| msgid "\"zipped\""
msgid "zipped"
-msgstr "\"zip-pakattu\""
+msgstr "zip-pakattu"
#: libraries/display_export.lib.php:317
-#, fuzzy
-#| msgid "\"gzipped\""
msgid "gzipped"
-msgstr "\"gzip-pakkaus\""
+msgstr "gzip-pakattu"
#: libraries/display_export.lib.php:319
-#, fuzzy
-#| msgid "\"bzipped\""
msgid "bzipped"
-msgstr "\"bzip-pakkaus\""
+msgstr "bzip-pakattu"
#: libraries/display_export.lib.php:328
#, fuzzy
@@ -5149,39 +5158,59 @@ msgstr ""
msgid "Language"
msgstr "Kieli"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "CHAR textarea columns"
+msgid "Restore column order"
+msgstr "CHAR-tekstikentän sarakkeet"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Valitse painamalla"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d on virheellinen rivinumero."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "riviä alkaen rivistä"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "vaakatasossa"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "vaakatasossa (kierretyt otsikot)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "pystysuorassa"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s, otsikoita toistetaan %s:n rivin välein"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Lajittele avaimen mukaan"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5194,102 +5223,98 @@ msgstr "Lajittele avaimen mukaan"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Valinnat"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Lyhennetyt tekstit"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Koko tekstit"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relaatioavain"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relaationäyttökenttä"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Näytä binäärisisältö"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Näytä BLOB-sisältö"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Selaimen muunnos (transformation)"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Rivi on poistettu"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Lopeta"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "lauseessa"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Näkyvillä rivit "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "yhteensä"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "kysely kesti %01.4f sek."
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Muokkaa"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Kyselytulosten toimenpiteet"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Tulostusversio (kokonaisin tekstein)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
-#, fuzzy
-#| msgid "Display PDF schema"
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
-msgstr "Näytä PDF-kaavio"
+msgstr "Näytä kaavio"
-#: libraries/display_tbl.lib.php:2396
-#, fuzzy
-#| msgid "Create User"
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
-msgstr "Luo käyttäjä"
+msgstr "Luo näkymä"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Linkkiä ei löydy"
@@ -5336,7 +5361,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puskurivaranto"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB:n tila"
@@ -5848,10 +5873,8 @@ msgstr "Sarakkeiden kommentit näkyvissä"
#: libraries/export/latex.php:62 libraries/export/odt.php:48
#: libraries/export/sql.php:60
-#, fuzzy
-#| msgid "Available MIME types"
msgid "Display MIME types"
-msgstr "Mahdolliset MIME-tyypit"
+msgstr "Näytä MIME-tyypit"
#: libraries/export/latex.php:139 libraries/export/sql.php:452
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
@@ -5859,7 +5882,7 @@ msgstr "Mahdolliset MIME-tyypit"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Palvelin"
@@ -5891,10 +5914,8 @@ msgid "(Generates a report containing the data of a single table)"
msgstr "(Luo raportin, joka sisältää yhden taulun tiedot)"
#: libraries/export/pdf.php:24
-#, fuzzy
-#| msgid "Report title"
msgid "Report title:"
-msgstr "Raportin otsikko"
+msgstr "Raportin otsikko:"
#: libraries/export/php_array.php:16
msgid "PHP array"
@@ -6068,7 +6089,7 @@ msgstr "SQL-kyselyn tulos"
msgid "Generated by"
msgstr "Luontiympäristö"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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ä)."
@@ -6239,7 +6260,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Käytä indeksiä/indeksejä"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Ei muutoksia"
@@ -6571,14 +6592,14 @@ msgid "Slave status"
msgstr "Alipalvelimen tila"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Muuttuja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Arvo"
@@ -6702,10 +6723,8 @@ msgid "Create a page"
msgstr "Luo uusi sivu"
#: libraries/schema/User_Schema.class.php:99
-#, fuzzy
-#| msgid "Page number:"
msgid "Page name"
-msgstr "Sivunumero:"
+msgstr "Sivun nimi"
#: libraries/schema/User_Schema.class.php:103
#, fuzzy
@@ -6774,10 +6793,8 @@ msgid "Portrait"
msgstr "Pystytasossa"
#: libraries/schema/User_Schema.class.php:394
-#, fuzzy
-#| msgid "Creation"
msgid "Orientation"
-msgstr "Luotu"
+msgstr "Suunta"
#: libraries/schema/User_Schema.class.php:407
msgid "Paper size"
@@ -6813,10 +6830,8 @@ msgid "Current Server"
msgstr "Nykyinen palvelin"
#: libraries/server_links.inc.php:73
-#, fuzzy
-#| msgid "settings"
msgid "Settings"
-msgstr "asetukset"
+msgstr "Asetukset"
#: libraries/server_links.inc.php:79 server_synchronize.php:1087
#: server_synchronize.php:1095
@@ -6824,20 +6839,20 @@ msgid "Synchronize"
msgstr "Yhtenäistä"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binääriloki"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Muuttujat"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Merkistöt"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Moottorit"
@@ -6879,16 +6894,14 @@ msgid "Clear"
msgstr "Tyhjennä"
#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
msgid "Columns"
-msgstr "Sarakkeiden nimet"
+msgstr "Sarakkeet"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Tallenna SQL-kysely"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
@@ -7124,7 +7137,7 @@ msgstr "PARTITION-määritelmä"
msgid "+ Add a new value"
msgstr "Lisää uusi palvelin"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Aika"
@@ -7372,7 +7385,7 @@ msgid "Protocol version"
msgstr "Protokollan versio"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Käyttäjä"
@@ -7405,21 +7418,16 @@ msgid "Official Homepage"
msgstr "phpMyAdminin kotisivut"
#: main.php:217
-#, fuzzy
-#| msgid "Attributes"
msgid "Contribute"
-msgstr "Attribuutit"
+msgstr "Osallistu"
#: main.php:218
-#, fuzzy
msgid "Get support"
-msgstr "Vienti"
+msgstr "Hanki tukea"
#: main.php:219
-#, fuzzy
-#| msgid "No change"
msgid "List of changes"
-msgstr "Ei muutoksia"
+msgstr "Muutoslista"
#: main.php:243
msgid ""
@@ -7656,10 +7664,8 @@ msgid "Rename to"
msgstr "Nimeä taulu uudelleen"
#: pmd_general.php:482 pmd_general.php:581
-#, fuzzy
-#| msgid "User name"
msgid "New name"
-msgstr "Käyttäjänimi"
+msgstr "Uusi nimi"
#: pmd_general.php:485 pmd_general.php:700
#, fuzzy
@@ -7669,7 +7675,7 @@ msgstr "Luo"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operaattori"
@@ -7774,10 +7780,9 @@ msgid "Modifications have been saved"
msgstr "Muutokset tallennettu"
#: prefs_forms.php:78
-#, fuzzy
-#| msgid "Submitted form contains errors"
msgid "Cannot save settings, submitted form contains errors"
-msgstr "Lähetetyssä lomakkeessa on virheitä"
+msgstr ""
+"Asetuksia ei voitu tallentaa, sillä lähetetyssä lomakkeessa on virheitä"
#: prefs_manage.php:80
#, fuzzy
@@ -7873,17 +7878,17 @@ msgstr "Taulua \"%s\" ei ole!"
msgid "Select binary log to view"
msgstr "Valitse näytettävä binääriloki"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Tiedostot"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Näytä katkaistut kyselyt"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Näytä kyselyt kokonaisuudessaan"
@@ -8412,16 +8417,15 @@ msgid "Unable to change master"
msgstr "Pääpalvelinta ei voitu vaihtaa"
#: server_replication.php:72
-#, fuzzy, php-format
-#| msgid "Master server changed succesfully to %s"
+#, php-format
msgid "Master server changed successfully to %s"
-msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s"
+msgstr "%s on onnistuneesti vaihdettu isäntäpalvelimeksi"
#: server_replication.php:180
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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Näytä isäntäpalvelimen tila"
@@ -8581,177 +8585,166 @@ msgstr ""
"Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. "
"Haluatko määrittää sen?"
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Säikeen %s lopetus onnistui."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Käsittelijä"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Kyselyvälimuisti"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Säikeet"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Väliaikaista tietoa"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Viivästetyt lisäyslauseet"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Avainvälimuisti"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Liitokset"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Lajittelu"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Transaktion koordinaattori"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Tyhjennä (sulje) kaikki taulut"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Näytä avoimet taulut"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Näytä alipalvelimet"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Näytä alipalvelimen tila"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Tyhjennä kyselymuisti"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Ajonaikaiset tiedot"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Valitse palvelin"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Kyselyn ominaisuuksia"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
-msgid "All status variables"
-msgstr "Näytä alipalvelimen tilan taulu"
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Päivitä"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekunti"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekunti"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuutti"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minuutti"
+msgstr[1] "Minuutti"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Sekunti"
+msgstr[1] "Sekunti"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Säikeen %s lopetus onnistui."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Käsittelijä"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Kyselyvälimuisti"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Säikeet"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Väliaikaista tietoa"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Viivästetyt lisäyslauseet"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Avainvälimuisti"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Liitokset"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Lajittelu"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Transaktion koordinaattori"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Tyhjennä (sulje) kaikki taulut"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Näytä avoimet taulut"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Näytä alipalvelimet"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Näytä alipalvelimen tila"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Tyhjennä kyselymuisti"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Ajonaikaiset tiedot"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Valitse palvelin"
+
+#: server_status.php:402
+#, fuzzy
+#| msgid "See slave status table"
+msgid "All status variables"
+msgstr "Näytä alipalvelimen tilan taulu"
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Älä vaihda salasanaa"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Näytä avoimet taulut"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relaatiot"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "tunnissa"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "minuutissa"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "sekunnissa"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Kyselyn tyyppi"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8759,34 +8752,34 @@ msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja "
"alipalvelimena ."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena ."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena"
"b>."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Kahdennuksen tila"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Liikenne"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8794,45 +8787,41 @@ msgstr ""
"Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-"
"palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Vastaanotettu"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Lähetetty"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Yhteydet"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Enim. yhtäaikaisia yhteyksiä"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Epäonnistuneet yritykset"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Keskeytetty"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Prosessit"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "Tunnus"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8843,16 +8832,16 @@ msgstr ""
"\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa "
"transaktiokyselyjen tallentamiseen."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8864,11 +8853,11 @@ msgstr ""
"nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin "
"muistissa eikä levyllä."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8876,7 +8865,7 @@ msgstr ""
"Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut "
"kyselyjä suorittaessaan."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8884,7 +8873,7 @@ msgstr ""
"Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien "
"määrä (virheenä todennäköisesti päällekkäinen avain)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8892,23 +8881,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED -rivien kirjoituksia."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "FLUSH-kyselyjä suoritettu."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Sisäisten COMMIT-kyselyjen määrä."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8918,7 +8907,7 @@ msgstr ""
"tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. "
"discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8929,7 +8918,7 @@ msgstr ""
"läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen "
"col1:sen olevan indeksoitu sarake."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8937,7 +8926,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:856
+#: server_status.php:865
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 "
@@ -8947,7 +8936,7 @@ msgstr ""
"avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita "
"käyttämällä rajauksia tai jos suoritetaan indeksihaku."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8956,7 +8945,7 @@ msgstr ""
"avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC "
"-kyselyllä optimoimiseen."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8969,7 +8958,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:859
+#: server_status.php:868
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 "
@@ -8981,35 +8970,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Sisäisten ROLLBACK-kyselyjen määrä."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Taulun rivien päivityspyyntöjen määrä."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Kertoo tauluihin lisättyjen rivien määrän."
-#: server_status.php:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Vapaiden sivujen määrä."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -9019,7 +9008,7 @@ msgstr ""
"parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden "
"välimuistia ei voida tyhjentää syystä tai toisesta."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -9031,11 +9020,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Puskurivarannon kokonaiskoko sivuina."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -9043,7 +9032,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9051,11 +9040,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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9063,7 +9052,7 @@ msgstr ""
"Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa "
"puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -9077,55 +9066,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Fsync()-toimenpiteitä tähän mennessä."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Tähän mennessä luetun tiedon määrä tavuina."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan."
-#: server_status.php:883
+#: server_status.php:892
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:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -9133,35 +9122,35 @@ msgstr ""
"Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin "
"tyhjentymistä jouduttiin odottamaan ennen jatkamista."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Lokitiedostojen fsync()-kirjoitusten määrä."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Lokitiedoston avointen fsync-synkronointien määrä."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Avoimet lokitiedostokirjoitukset."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Lokitiedostoon kirjoitettujen tavujen määrä."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Luotujen sivujen määrä."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9170,52 +9159,52 @@ msgstr ""
"arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen "
"koko tavuina."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Luettujen rivien määrä."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Kirjoitettujen sivujen määrä."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Tällä hetkellä odotettavien rivilukitusten määrä."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina."
-#: server_status.php:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB-tauluista poistettujen rivien määrä."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB-tauluihin lisättyjen rivien määrä."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB-taulusta luettujen rivien määrä."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB-taulun päivitettyjen rivien määrä."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9224,7 +9213,7 @@ msgstr ""
"muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto "
"tunnetaan yleisesti nimellä Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -9233,20 +9222,20 @@ msgstr ""
"avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan "
"käytössä."
-#: server_status.php:908
+#: server_status.php:917
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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9257,16 +9246,16 @@ msgstr ""
"asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea "
"lausekkeella Key_reads / Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9277,18 +9266,18 @@ msgstr ""
"kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole "
"vielä koottu."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9296,39 +9285,39 @@ msgstr ""
"Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa "
"olla liian alhainen."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Avoinna olevien tiedostojen määrä."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Avoinna olevien taulujen määrä."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Kyselyvälimuistin vapaan muistin määrä."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Välimuistiosumien määrä."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Välimuistiin lisättyjen kyselyjen määrä."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9341,7 +9330,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9350,19 +9339,19 @@ msgstr ""
"tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne "
"query_cache_type-asetuksen takia)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Rekisteröityjen kyselyjen määrä välimuistissa."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9370,11 +9359,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9383,7 +9372,7 @@ msgstr ""
"rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa "
"huolella.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9391,17 +9380,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9409,13 +9398,13 @@ msgstr ""
"Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on "
"käynnistyksestään lähtien yrittänut suorittaa transaktioita."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9423,14 +9412,14 @@ msgstr ""
"Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin "
"slow_launch_time sekuntia."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9439,25 +9428,25 @@ msgstr ""
"Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, "
"sort_buffer-muuttujan arvoa voi suurentaa."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Lajiteltujen rivien määrä."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9469,7 +9458,7 @@ msgstr ""
"hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai "
"käyttää hyödyksi kahdennusta."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9479,11 +9468,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9495,7 +9484,7 @@ msgstr ""
"säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta "
"suorituskykyyn.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Hereillä olevien säikeiden määrä."
@@ -9587,13 +9576,11 @@ msgstr "Seuraavat kyselyt on suoritettu:"
#: server_synchronize.php:1126
msgid "Enter manually"
-msgstr ""
+msgstr "Syötä käsin"
#: server_synchronize.php:1134
-#, fuzzy
-#| msgid "Insecure connection"
msgid "Current connection"
-msgstr "Salaamaton yhteys"
+msgstr "Nykyinen yhteys"
#: server_synchronize.php:1163
#, fuzzy, php-format
@@ -9621,7 +9608,7 @@ msgstr "Palvelimen muuttujat ja asetukset"
msgid "Session value"
msgstr "Tämän istunnon arvo"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globaali arvo"
@@ -9671,10 +9658,8 @@ msgid "Insecure connection"
msgstr "Salaamaton yhteys"
#: setup/frames/index.inc.php:92
-#, fuzzy
-#| msgid "Configuration file"
msgid "Configuration saved."
-msgstr "Asetustiedosto"
+msgstr "Asetukset tallennettiin"
#: setup/frames/index.inc.php:93
msgid ""
@@ -10007,41 +9992,41 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Avaimen tulisi sisältää merkkejä, numeroita [em]ja[/em] erikoismerkkejä"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Selaa viitearvoja"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Lisätyn rivin tunnus: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Näytetään PHP-koodina"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Näytetään SQL-kysely"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Tarkista SQL-lause"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Taulun \"%s\" indeksien kanssa on ongelmia"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Tunniste"
@@ -10435,25 +10420,25 @@ msgstr "Viiteavaimen rajoitus"
msgid "No rows selected"
msgstr "Ei yhtään riviä valittu"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Valitse sarakkeet (vähintään yksi):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Rivejä sivulla"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Lajittelujärjestys:"
@@ -10757,6 +10742,12 @@ msgstr "VIEW-arvon nimi"
msgid "Rename view to"
msgstr "Nimeä taulu uudelleen"
+#~ msgid "Theme / Style"
+#~ msgstr "Teema/tyyli"
+
+#~ msgid "seconds"
+#~ msgstr "Sekunti"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Kyselyn suoritusajan vertailu (mikrosekunteina)"
@@ -10782,8 +10773,6 @@ msgstr "Nimeä taulu uudelleen"
#~ msgid "Show processes"
#~ msgstr "Näytä prosessit"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Nollaa"
@@ -10802,22 +10791,14 @@ msgstr "Nimeä taulu uudelleen"
#~ "Kyselytilastot : Tälle palvelimelle on lähetetty viime "
#~ "käynnistyksestä lähtien %s kyselyä."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Käyttöoikeuksien uudelleenlataus onnistui."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Saattaa olla summittainen. Katso FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Kyselyn tyyppi"
@@ -10830,8 +10811,6 @@ msgstr "Nimeä taulu uudelleen"
#~ msgid "Add a new User"
#~ msgstr "Lisää uusi käyttäjä"
-#, fuzzy
-#~| msgid "Show logo in left frame"
#~ msgid "Show table row links on left side"
#~ msgstr "Näytä vasemmassa kehyksessä logo"
diff --git a/po/fr.po b/po/fr.po
index 2280163d0f..8901f6aba9 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-09 22:13+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-17 14:22+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
"Language: fr\n"
@@ -15,18 +15,18 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Tout afficher"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
#: libraries/schema/User_Schema.class.php:360
msgid "Page number:"
-msgstr "Page n°: "
+msgstr "Page n° : "
#: browse_foreigners.php:133
msgid ""
@@ -36,26 +36,26 @@ msgid ""
msgstr ""
"La fenêtre demandée depuis votre navigateur ne peut être rafraîchie. Il est "
"possible que vous ayez fermé la fenêtre source , ou encore que votre "
-"navigateur bloque les mises à jour inter-fenêtres pour des raisons de "
+"navigateur bloque les mises à jour entre fenêtres pour des raisons de "
"sécurité."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Rechercher"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Rechercher"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,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:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Description"
@@ -138,7 +138,7 @@ msgstr "Commentaires sur la table"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Colonne"
@@ -151,7 +151,7 @@ msgstr "Colonne"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -167,7 +167,7 @@ msgstr "Type"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Relié à"
msgid "Comments"
msgstr "Commentaires"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "Commentaires"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Non"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "Non"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "Voir une exportation (schéma) de la base de données"
msgid "No tables found in database."
msgstr "Aucune table n'a été trouvée dans cette base."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Tout sélectionner"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Tout désélectionner"
@@ -272,7 +272,7 @@ msgstr "La base de données %s a été copiée sur %s"
msgid "Rename database to"
msgstr "Changer le nom de la base de données pour"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Commande"
@@ -333,7 +333,7 @@ msgstr "Aller à la base de données copiée"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -358,7 +358,7 @@ msgstr "Éditer ou exporter un schéma relationnel"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Table"
@@ -374,7 +374,7 @@ msgstr "Lignes"
msgid "Size"
msgstr "Taille"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "utilisé"
@@ -400,7 +400,7 @@ msgstr "Dernière modification"
msgid "Last check"
msgstr "Dernière vérification"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -420,25 +420,25 @@ msgid "visual builder"
msgstr "mode visuel"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Tri"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Croissant"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Décroissant"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Afficher"
@@ -461,7 +461,7 @@ msgstr "Effacer"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ou"
@@ -490,58 +490,58 @@ msgstr "Utiliser les tables"
msgid "SQL query on database %s :"
msgstr "Requête SQL sur la base %s : "
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Exécuter la requête"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Accès refusé"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "au moins un mot"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "tous les mots"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "phrase exacte"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "expression réguliére"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Résultats de la recherche de «%s » %s :"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s occurence dans la table %s "
msgstr[1] "%s occurences dans la table %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Afficher"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Supprimer de la table %s les occurences?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -552,65 +552,65 @@ msgstr "Supprimer de la table %s les occurences?"
msgid "Delete"
msgstr "Effacer"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Total : %s occurence"
msgstr[1] "Total : %s occurences"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Effectuer une nouvelle recherche dans la base de données"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Mot(s) ou valeur(s) à rechercher (passe-partout: «%») :"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Type de recherche :"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Séparer les mots par un espace (« »)."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Dans la(les) table(s) :"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Dans la colonne : "
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Aucune table n'a été trouvée dans cette base."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "La table %s a été vidée"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "La vue %s a été supprimée"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "La table %s a été effacée"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Le suivi est actif."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Le suivi n'est pas activé."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -619,106 +619,106 @@ msgstr ""
"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
"%sdocumentation%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vue"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Réplication"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Somme"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Pour la sélection :"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Tout cocher"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Tout décocher"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Cocher tables avec pertes"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporter"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Version imprimable"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Vider"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Supprimer"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Vérifier la table"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimiser la table"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Réparer la table"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyser la table"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Ajouter un préfixe à la table"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Remplacer le préfixe de table"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Copier la table avec un préfixe"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dictionnaire de données"
@@ -733,9 +733,9 @@ msgstr "Tables faisant l'objet d'un suivi"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Base de données"
@@ -751,8 +751,8 @@ msgstr "Créé"
msgid "Updated"
msgstr "Mis à jour"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "État"
@@ -901,7 +901,7 @@ msgstr "Le signet a été effacé."
msgid "Showing bookmark"
msgstr "Affichage du signet"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Signet %s créé"
@@ -929,7 +929,7 @@ msgstr ""
"limite de temps de PHP ne soit augmentée."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -957,15 +957,15 @@ msgstr "Cliquer pour sélectionner"
msgid "Click to unselect"
msgstr "Cliquer pour désélectionner"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "La commande «DROP DATABASE» est désactivée."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Voulez-vous vraiment effectuer "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !"
@@ -1018,10 +1018,8 @@ msgstr "Ce n'est pas un nombre !"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Nombre de fichiers journal"
+msgstr "Nombre total"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1057,156 +1055,190 @@ msgstr "Effacement des utilisateurs sélectionnés"
msgid "Close"
msgstr "Fermer"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Choix du serveur"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Afficher le graphique des requêtes"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Chargement"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Requête en traitement"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Erreur dans le traitement de la requête"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Suppression de la colonne"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Ajout de clé primaire"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Changement de nom de la base de données"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Rafraîchir la base de données"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Copie de la base de données"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Changement du jeu de caractères"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "La table doit comporter au moins une colonne."
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Nouvelle table"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Insérer dans la table"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "En recherche"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Cacher les résultats de recherche"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Afficher les résultats de recherche"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Affichage en cours"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Destruction en cours"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "Cacher zone SQL"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Montrer zone SQL"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Éditer en place"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifier"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Graphique du trafic en temps réel"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Graphique des connexions et processus en temps réel"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Graphique des requêtes en temps réel"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Données statiques"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Autres"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Trafic du serveur"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr "Connexions depuis le dernier rafraîchissement"
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processus"
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr "Connexions / Processus"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr "Requêtes reçues depuis le dernier rafraîchissement"
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr "Requêtes reçues"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statistiques sur les requêtes"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Chargement en cours"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Requête en traitement"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Erreur dans le traitement de la requête"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Suppression de la colonne"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Ajout de clé primaire"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Changement de nom de la base de données"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Rafraîchir la base de données"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Copie de la base de données"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Changement du jeu de caractères"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "La table doit comporter au moins une colonne."
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Nouvelle table"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Insérer dans la table"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "En recherche"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Cacher les résultats de recherche"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Afficher les résultats de recherche"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Affichage en cours"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Destruction en cours"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Cacher zone SQL"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Montrer zone SQL"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Éditer en place"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1214,41 +1246,41 @@ msgstr "Modifier"
msgid "Save"
msgstr "Sauvegarder"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Cacher"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Cacher les critères de recherche"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Afficher les critères de recherche"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Sélectionnez la clé référencée"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Choisissez la clé étrangère"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Veuillez choisir la clé primaire ou un index unique"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Colonne descriptive"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1256,27 +1288,27 @@ msgstr ""
"Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les "
"sauvegardez pas. Voulez-vous continuer?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Ajouter une option pour la colonne"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Générer un mot de passe"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Générer"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Modifier le mot de passe"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "plus"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1286,258 +1318,258 @@ msgstr ""
"une mise à niveau. La version la plus récente est %s, publiée le %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", dernière version stable :"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "à jour"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Fermer"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Précédent"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Suivant"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Aujourd'hui"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Janvier"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Février"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Mars"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Avril"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Juin"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Juillet"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Août"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Septembre"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Octobre"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Novembre"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Décembre"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Dimanche"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Lundi"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Mardi"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Mercredi"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Jeudi"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Vendredi"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Samedi"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sam"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Je"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Heure"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Seconde"
@@ -1634,7 +1666,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Bases de données"
@@ -1700,25 +1732,25 @@ msgstr "%s a été désactivé sur ce serveur MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Nom de base de données invalide"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Nom de table invalide"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Erreur lors du renommage de %1$s en %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "La table %s se nomme maintenant %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Impossible de sauvegarder les préférences d'interface de tables"
@@ -1750,10 +1782,9 @@ msgstr "Thème %s inexistant !"
msgid "Theme path not found for theme %s!"
msgstr "Chemin non trouvé pour le thème %s !"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Thème / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1761,7 +1792,6 @@ msgstr "Connexion impossible: paramètres incorrects."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
@@ -1914,7 +1944,7 @@ msgstr "partagé"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tables"
@@ -2001,7 +2031,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Serveur"
@@ -2050,7 +2079,7 @@ msgid "Documentation"
msgstr "Documentation"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Requête SQL"
@@ -2058,119 +2087,119 @@ msgstr "Requête SQL"
msgid "MySQL said: "
msgstr "MySQL a répondu: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Connexion au validateur SQL impossible"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Expliquer SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Ne pas expliquer SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Sans source PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Créer source PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Actualiser"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Ne pas valider SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Valider SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Éditer cette requête en place"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "En ligne"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilage"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "o"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "Kio"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "Mio"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "Gio"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "Tio"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "Pio"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "Eio"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y à %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s jours, %s heures, %s minutes et %s secondes"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Début"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Précédent"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Aller à la base de données "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2182,42 +2211,42 @@ msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s"
msgid "Structure"
msgstr "Structure"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Insérer"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Opérations"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Parcourir :"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
"Choisissez depuis le répertoire de téléchargement du serveur web %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Le répertoire de transfert est inaccessible"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Aucun fichier n'est disponible pour le transfert"
@@ -2578,7 +2607,7 @@ msgstr "Onglet par défaut pour tables"
msgid "Show binary contents as HEX by default"
msgstr "Montrer par défaut le contenu binaire en hexadécimal"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Montrer le contenu binaire en hexadécimal"
@@ -4627,7 +4656,7 @@ msgstr "Concepteur"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilèges"
@@ -4639,7 +4668,7 @@ msgstr "Procédures stockées"
msgid "Return type"
msgstr "Type retourné"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4826,9 +4855,9 @@ msgstr "Jeu de caractères du fichier : "
msgid "Compression:"
msgstr "Compression:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Aucune"
@@ -4962,37 +4991,53 @@ msgstr "Options spécifiques au format:"
msgid "Language"
msgstr "Langue"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Restaurer l'ordre des colonnes"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Faire glisser pour réordonner"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Cliquer pour trier"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Cliquer pour marquer/enlever les marques"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d n'est pas un numéro de ligne valable."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "ligne(s) à partir de la ligne n°"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (en-têtes pivotés)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "en mode %s et répéter les en-têtes à chaque groupe de %s"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Trier sur l'index"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5005,92 +5050,92 @@ msgstr "Trier sur l'index"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Options"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Textes réduits"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Textes complets"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relations : clés"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Relations : colonnes descriptives"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Montrer le contenu binaire"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Montrer le contenu BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformation"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Copier"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "La ligne a été effacée"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Supprimer"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "dans la requête"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Affichage des lignes"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Traitement en %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Modifier"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Opérations sur les résultats de la requête"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Version imprimable (avec textes complets)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Afficher le graphique"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Créer une vue"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Lien absent"
@@ -5138,7 +5183,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mémoire-tampon"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "État InnoDB"
@@ -5650,7 +5695,7 @@ msgstr "Afficher les types MIME"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Client"
@@ -5876,7 +5921,7 @@ msgstr "Résultat de la requête SQL"
msgid "Generated by"
msgstr "Généré par"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6041,7 +6086,7 @@ msgstr "Ajouter un préfixe de table"
msgid "Add prefix"
msgstr "Ajouter un préfixe"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Pas de modifications"
@@ -6376,14 +6421,14 @@ msgid "Slave status"
msgstr "État de l'esclave"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valeur"
@@ -6611,20 +6656,20 @@ msgid "Synchronize"
msgstr "Synchroniser"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Log binaire"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variables"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Jeux de caractères"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Moteurs"
@@ -6669,11 +6714,11 @@ msgstr "Vider"
msgid "Columns"
msgstr "Colonnes"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Conserver cette requête SQL dans les signets"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Signet visible pour les autres utilisateurs"
@@ -6899,7 +6944,7 @@ msgstr "Définition de PARTITION"
msgid "+ Add a new value"
msgstr "+ Ajouter une valeur"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Durée"
@@ -7101,7 +7146,7 @@ msgid "Protocol version"
msgstr "Version du protocole"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Utilisateur"
@@ -7374,7 +7419,7 @@ msgstr "Regroupement"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Opérateur"
@@ -7556,17 +7601,17 @@ msgstr "Le fichier n'existe pas"
msgid "Select binary log to view"
msgstr "Sélectionnez le log binaire à consulter"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Fichiers"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Afficher les requêtes tronquées"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Afficher les requêtes complètes"
@@ -8106,7 +8151,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Montrer l'état du maître"
@@ -8257,178 +8302,153 @@ msgstr ""
"Ce serveur n'est pas configuré comme esclave dans un processus de "
"réplication. Désirez-vous le configurer ?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Taux de rafraîchissement"
+
+#: server_status.php:31
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d minute"
+msgstr[1] "%d minutes"
+
+#: server_status.php:33
+#, php-format
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "%d seconde"
+msgstr[1] "%d secondes"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Le processus %s a été éliminé."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Gestionnaire"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Cache des requêtes"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Fils d'exécution"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Données temporaires"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Insertions avec délais"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Cache des clés"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Jointures"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Mécanisme de tri"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Coordonnateur des transactions"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Fermer toutes les tables"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Montrer les tables ouvertes"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Montrer les serveurs esclaves"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Montrer l'état des serveurs esclaves"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Vider la cache des requêtes"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informations sur le serveur"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Choix du serveur"
+msgstr "Trafic du serveur"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Statistiques sur les requêtes"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Montrer l'état de l'esclave"
+msgstr "Toutes les variables d'état"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Actualiser"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Seconde"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Seconde"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minute"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "Conserver le mot de passe"
+msgstr "Contenant le mot :"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Montrer les tables ouvertes"
+msgstr "Afficher uniquement les valeurs d'alerte"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrer par catégorie..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "Liens connexes"
+msgstr "Liens connexes:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "par heure"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "par minute"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "par seconde"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Type de requête"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "#"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Trafic réseau depuis le démarrage : %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8436,35 +8456,35 @@ msgstr ""
"Ce serveur est un serveur maître et esclave dans le processus "
"de réplication."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
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:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Pour plus d'information sur l'état de la réplication sur ce serveur, "
-"consultez la section de réplication ."
+"consultez la section de réplication ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "État de la réplication"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafic"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8473,45 +8493,39 @@ msgstr ""
"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être "
"inexactes."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Reçu"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Envoyé"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Connexions"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. de connexions simultanées"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Tentatives échouées"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Arrêts prématurés"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processus"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Whether to enable SSL for connection to MySQL server."
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Pour activer ou pas une connexion SSL vers le serveur MySQL."
+msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8521,17 +8535,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
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:844
+#: server_status.php:853
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 "
@@ -8544,11 +8559,11 @@ msgstr ""
"tmp_table_size afin que les tables temporaires soient maintenues en mémoire "
"au lieu d'être sur disque."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Le nombre de fichiers temporaires créés par mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8556,7 +8571,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:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8564,7 +8579,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:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8572,23 +8587,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Le nombre de lignes écrites via INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Le nombre de commandes FLUSH exécutées."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Le nombre de commandes COMMIT internes."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8598,7 +8613,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:854
+#: server_status.php:863
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, "
@@ -8609,7 +8624,7 @@ msgstr ""
"d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une "
"colonne indexée."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8617,7 +8632,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:856
+#: server_status.php:865
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 "
@@ -8627,7 +8642,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8635,7 +8650,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:858
+#: server_status.php:867
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 "
@@ -8648,7 +8663,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:859
+#: server_status.php:868
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 "
@@ -8660,35 +8675,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Le nombre d'énoncés ROLLBACK internes."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Le nombre de pages contenant des données."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Le nombre de pages contenant des données «dirty»."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Le nombre de pages libres."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8698,7 +8713,7 @@ msgstr ""
"train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une "
"autre raison."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8710,11 +8725,11 @@ msgstr ""
"comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Taille totale de la réserve, en pages."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8723,7 +8738,7 @@ msgstr ""
"lorsqu'une requête doit balayer une large portion de table en ordre "
"discontinu."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8731,11 +8746,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:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8743,7 +8758,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:874
+#: server_status.php:883
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 "
@@ -8757,51 +8772,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Le nombre d'écritures faites dans la réserve InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Le nombre d'opérations fsync() faites jusqu'à présent."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Le nombre d'opérations fsync() actuellement en attente."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Le nombre actuel de lectures en attente."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Le nombre actuel d'écritures en attente."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "La quantité d'octets lus jusqu'à présent."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Le nombre total de lectures de données."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Le nombre total d'écritures de données."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "La quantité d'octets écrits jusqu'à présent."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "Le nombre d'opérations «doublewrite» effectuées."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8809,35 +8824,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Le nombre de requêtes d'écritures sur le fichier témoin."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Le nombre d'écritures physiques au fichier témoin."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Le nombre d'écritures du fichier témoin en attente."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Le nombre d'octets écrits sur le fichier témoin."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Le nombre de pages créées."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8846,51 +8861,51 @@ msgstr ""
"valeurs sont comptées par page; la taille de page leur permet d'être "
"facilement converties en octets."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Le nombre de pages lues."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Le nombre de pages écrites."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Le nombre de verrous d'enregistrements actuellement en attente."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Le nombre de lignes supprimées des tables InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Le nombre de lignes insérées dans des tables InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Le nombre de lignes lues dans des tables InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Le nombre de lignes mises à jour dans des tables InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8899,7 +8914,7 @@ msgstr ""
"pas encore transférés sur disque. Anciennement connu sous le nom "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8908,7 +8923,7 @@ msgstr ""
"cette valeur pour déterminer la proportion de la cache de clés qui est "
"utilisée."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -8918,11 +8933,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8933,15 +8948,15 @@ msgstr ""
"petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read "
"requests."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8952,17 +8967,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:914
+#: server_status.php:923
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:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8970,38 +8986,41 @@ msgstr ""
"Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table "
"est probablement trop petite."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Le nombre de fichiers qui sont ouverts."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Le nombre de tables qui sont ouvertes."
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Le nombre de blocs mémoire libres dans la cache de requêtes. Un nombre élevé "
+"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la "
+"commande FLUSH QUERY CACHE."
-#: server_status.php:921
+#: server_status.php:930
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:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Le nombre de succès dans la cache."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Le nombre de requêtes ajoutées à la cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9013,7 +9032,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9021,19 +9040,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Le nombre de requêtes enregistrées dans la cache."
-#: server_status.php:927
+#: server_status.php:936
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:928
+#: server_status.php:937
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:929
+#: server_status.php:938
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."
@@ -9041,13 +9060,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9056,7 +9075,7 @@ msgstr ""
"ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos "
"tables.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9064,19 +9083,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9084,11 +9103,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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9096,14 +9115,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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9112,23 +9131,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Le nombre de tri effectués avec des plages."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Le nombre de lignes triées."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9140,7 +9159,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:945
+#: server_status.php:954
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 "
@@ -9150,11 +9169,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Le nombre de connexions ouvertes actuellement."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9167,7 +9186,7 @@ msgstr ""
"perceptible de la performance si votre serveur gère correctement les fils "
"d'exécution.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Le nombre de fils d'exécution non suspendus."
@@ -9290,7 +9309,7 @@ msgstr "Variables et paramètres du serveur"
msgid "Session value"
msgstr "Valeur pour la session"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valeur globale"
@@ -9615,39 +9634,39 @@ msgstr ""
"La clé devrait contenir des lettres, des nombres [em]et[/em] des caractères "
"spéciaux."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Afficher les valeurs de la table liée"
-#: sql.php:170
+#: sql.php:181
#, 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:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identifiant de la ligne insérée : %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Affichage du code PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Affichage de la requête SQL"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "SQL validé"
-#: sql.php:960
+#: sql.php:973
#, 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:992
+#: sql.php:1005
msgid "Label"
msgstr "Intitulé"
@@ -9731,10 +9750,8 @@ msgid "Line"
msgstr "Ligne"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "En ligne"
+msgstr "Spline"
#: tbl_chart.php:89
msgid "Pie"
@@ -9745,50 +9762,36 @@ msgid "Stacked"
msgstr "En piles"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Titre du rapport :"
+msgstr "Titre du graphique"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Axe des X"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "Requêtes SQL"
+msgstr "Séries:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Taille horizontale pour une zone de texte"
+msgstr "Les colonnes restantes"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
msgstr "Étiquette pour l'axe des X"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Valeur"
+msgstr "Valeurs en X"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
msgstr "Étiquette pour l'axe des Y"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Valeur"
+msgstr "Valeurs en Y"
#: tbl_create.php:56
#, php-format
@@ -10029,23 +10032,23 @@ msgstr "Contrainte de clé étrangère"
msgid "No rows selected"
msgstr "Aucune ligne n'a été sélectionnée"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Recherche «par valeur» (passepartout: «% ») "
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Choisir les colonnes (au moins une)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Critères de recherche (pour l'énoncé «where») :"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Nombre de lignes par page"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Ordre d'affichage :"
@@ -10328,6 +10331,12 @@ msgstr "Nom de la vue"
msgid "Rename view to"
msgstr "Changer le nom de la vue pour"
+#~ msgid "Theme / Style"
+#~ msgstr "Thème / Style"
+
+#~ msgid "seconds"
+#~ msgstr "secondes"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Comparaison du temps d'exécution des requêtes (en microsecondes)"
diff --git a/po/gl.po b/po/gl.po
index c81a52ac30..9a69507c1d 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: galician \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Ver todos os rexistros"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"actualizacións entre xanelas xa que así o pediu na configuración de "
"seguranza do navegador."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Procurar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Procurar"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Nome chave"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Descrición"
@@ -138,7 +138,7 @@ msgstr "Comentarios da táboa"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -153,7 +153,7 @@ msgstr "Nomes das columnas"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -169,7 +169,7 @@ msgstr "Tipo"
msgid "Null"
msgstr "Nulo"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -198,7 +198,7 @@ msgstr "Vincúlase con"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -209,12 +209,12 @@ msgstr "Comentarios"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Non"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -229,7 +229,7 @@ msgstr "Non"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -248,11 +248,11 @@ msgstr "Ver o esquema do volcado da base de datos"
msgid "No tables found in database."
msgstr "Non se achou ningunha táboa na base de datos"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Seleccionar todo"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Non seleccionar nada"
@@ -274,7 +274,7 @@ msgstr "Copiuse a base de datos %s para %s"
msgid "Rename database to"
msgstr "Mudar o nome da base de datos para"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Orde"
@@ -339,7 +339,7 @@ msgstr "Pasar á base de datos copiada"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -369,7 +369,7 @@ msgstr "Esquema relacional"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Táboa"
@@ -385,7 +385,7 @@ msgstr "Fileiras"
msgid "Size"
msgstr "Tamaño"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "en uso"
@@ -411,7 +411,7 @@ msgstr "Actualización máis recente"
msgid "Last check"
msgstr "Comprobación máis recente"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -432,25 +432,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Ordenar"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
@@ -473,7 +473,7 @@ msgstr "Eliminar"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "ou"
@@ -506,39 +506,39 @@ msgstr "Usar as táboas"
msgid "SQL query on database %s :"
msgstr "Procura tipo SQL na base de datos %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Enviar esta procura"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Denegouse o acceso"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "polo menos unha das palabras"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "todas as palabras"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "a frase exacta"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "como expresión regular"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Procurar os resultados para \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -546,20 +546,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s ocorrencias(s) dentro da táboa %s "
msgstr[1] "%s ocorrencias(s) dentro da táboa %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visualizar"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "A extraer datos da táboa"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -570,7 +570,7 @@ msgstr "A extraer datos da táboa"
msgid "Delete"
msgstr "Eliminar"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -578,62 +578,62 @@ msgid_plural "Total: %s matches"
msgstr[0] "Total: %s ocorrencia(s)"
msgstr[1] "Total: %s ocorrencia(s)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Procurar na base de datos"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Palabras(s) ou valore(s) a procurar (o comodín é: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Atopar:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "As palabras divídense cun carácter de espazo (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Dentro da(s) táboa(s):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "No campo:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Non se achou ningunha táboa na base de datos"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Vaciouse a táboa %s"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Deixouse a vista %s"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Eliminouse a táboa %s"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "O seguemento está activado."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "O seguemento non está activado."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -642,112 +642,112 @@ msgstr ""
"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
"%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vista"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replicación"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Suma"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Todos os marcados"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Marcalos todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Quitarlles as marcas a todos"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Exceso na comprobación"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Visualización previa da impresión"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Borrar"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Eliminar"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Verificar a táboa"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizar a táboa"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparar a táboa"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizar a táboa"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Ir á táboa"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Substituír os datos da táboa polos do ficheiro"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Substituír os datos da táboa polos do ficheiro"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicionario de datos"
@@ -762,9 +762,9 @@ msgstr "Táboas seguidas"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Base de datos"
@@ -780,8 +780,8 @@ msgstr "Creada"
msgid "Updated"
msgstr "Actualizada"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Estado"
@@ -924,7 +924,7 @@ msgstr "Eliminouse o marcador."
msgid "Showing bookmark"
msgstr "A mostrar o marcador"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Creouse o marcador %s"
@@ -952,7 +952,7 @@ msgstr ""
"non ser que lle incrementen os limites de tempo de php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -978,15 +978,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Non se permiten as ordes \"Eliminar a base de datos\"."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Seguro? "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Está a piques de DESTRUÍR unha base de datos enteira!"
@@ -1092,190 +1092,234 @@ msgstr "Eliminar os usuarios seleccionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Escolla de servidor"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Live query chart"
-msgstr "Caixa de Procuras SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-#| msgid "Load"
-msgid "Loading"
-msgstr "Cargar"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Procesos"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Mudar o nome da base de datos para"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Mudar o nome da base de datos para"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Copiar a base de datos para"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Conxunto de caracteres"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Crear táboas"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Usar as táboas"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Procurar"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide search results"
-msgstr "Caixa de Procuras SQL"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show search results"
-msgstr "Caixa de Procuras SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Visualizar"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "A eliminar %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide query box"
-msgstr "Caixa de Procuras SQL"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show query box"
-msgstr "Caixa de Procuras SQL"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Motores"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modificar"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Escolla de servidor"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Live query chart"
+msgstr "Caixa de Procuras SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Escolla de servidor"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesos"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Conexións"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Solicitudes SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Show statistics"
+msgid "Query statistics"
+msgstr "Mostrar as estatísticas"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+#| msgid "Load"
+msgid "Loading"
+msgstr "Cargar"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Procesos"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Mudar o nome da base de datos para"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Mudar o nome da base de datos para"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Copiar a base de datos para"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Conxunto de caracteres"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Crear táboas"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Usar as táboas"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Procurar"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide search results"
+msgstr "Caixa de Procuras SQL"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show search results"
+msgstr "Caixa de Procuras SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Visualizar"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "A eliminar %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide query box"
+msgstr "Caixa de Procuras SQL"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show query box"
+msgstr "Caixa de Procuras SQL"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Motores"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1283,79 +1327,79 @@ msgstr "Modificar"
msgid "Save"
msgstr "Gardar"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Agochar"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Seleccionar a chave referida"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Escoller unha chave externa"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Escolla a chave primaria ou unha chave única"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Xerar un contrasinal"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Xerar"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Trocar o contrasinal"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Lu"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1365,131 +1409,131 @@ msgstr ""
"actualizala. A versión máis recente é %s, publicada o %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Comprobar cal é a última versión"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ir á base de datos"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Doar"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Seguinte"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binario "
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Maio"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Xuño"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Xullo"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1497,178 +1541,178 @@ msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Do"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lu"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ma"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ve"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sá"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mé"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Xo"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sá"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "en uso"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1765,7 +1809,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Bases de datos"
@@ -1840,25 +1884,25 @@ msgstr "%s foi desactivado neste servidor de MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "A base de datos non é válida"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Non se admite este nome de táboa."
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "A táboa %s chámase agora %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1890,10 +1934,9 @@ msgstr "Non se atopou o tema %s!"
msgid "Theme path not found for theme %s!"
msgstr "Non se atopou o camiño do tema para o tema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Estilo"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1901,7 +1944,6 @@ msgstr "Non se pode conectar: os axustes non son válidos."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Reciba a benvida a %s"
@@ -2061,7 +2103,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Táboas"
@@ -2154,7 +2196,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Servidor"
@@ -2202,7 +2243,7 @@ msgid "Documentation"
msgstr "Documentación"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "orde SQL"
@@ -2210,123 +2251,123 @@ msgstr "orde SQL"
msgid "MySQL said: "
msgstr "Mensaxes do MySQL: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "Non se puido conectar co servidor de MySQL"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Saltar a explicacion de SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "sen código PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Refrescar"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Omitir a validacion de"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validar o SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motores"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Análise do desempeño"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d de %B de %Y ás %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Inicio"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar à base de datos "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A función %s vese afectada por un erro descoñecido; consulte %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2338,42 +2379,42 @@ msgstr "A función %s vese afectada por un erro descoñecido; consulte %s"
msgid "Structure"
msgstr "Estrutura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Inserir"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacións"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "directorio de recepción do servidor web"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Non se pode acceder ao directorio que designou para os envíos"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2755,7 +2796,7 @@ msgstr "Separador por omisión das táboas"
msgid "Show binary contents as HEX by default"
msgstr "Mostrar o contido binario como HEX"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Mostrar o contido binario como HEX"
@@ -4941,7 +4982,7 @@ msgstr "Deseñador"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilexios"
@@ -4953,7 +4994,7 @@ msgstr "Rutinas"
msgid "Return type"
msgstr "Tipo de retorno"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5172,9 +5213,9 @@ msgstr "Conxunto de caracteres do ficheiro:"
msgid "Compression:"
msgstr "Compresión"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Ningunha"
@@ -5332,39 +5373,57 @@ msgstr ""
msgid "Language"
msgstr "Lingua"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "CHAR textarea columns"
+msgid "Restore column order"
+msgstr "Columnas de área de texto de CHAR"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d non é un número de fileira válido."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "fileiras, a comezar pola"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (cabezallos rotados)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "en modo %s e repetir os cabezallos de cada %s celas"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Ordenar pola chave"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5377,102 +5436,102 @@ msgstr "Ordenar pola chave"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opcións"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Textos parciais"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Textos completos"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Chave relacional"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Campo de exhibición relacional"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Mostrar os contidos binarios"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Mostrar os contidos BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformación do navegador"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Eliminouse o rexistro"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Matar (kill)"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "a procurar"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "A mostrar rexistros "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "a pesquisa levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Mudar"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operacións de resultados da procura"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Vista previa da impresión (con textos completos)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Mostrar o esquema PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Crear unha versión"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Non se atopou o vínculo"
@@ -5522,7 +5581,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Reserva da memoria intermedia"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Estado de InnoDB"
@@ -6046,7 +6105,7 @@ msgstr "Tipos MIME dispoñíbeis"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Servidor"
@@ -6255,7 +6314,7 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Xerado por"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6426,7 +6485,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Aplicar índice(s)"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Sen cambios"
@@ -6760,14 +6819,14 @@ msgid "Slave status"
msgstr "Estado do escravo"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variábel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valor"
@@ -7013,20 +7072,20 @@ msgid "Synchronize"
msgstr "Sincronizar"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Ficheiro de rexistro binario"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variábeis"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Conxuntos de caracteres"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motores"
@@ -7073,11 +7132,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Nomes das columnas"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Gardar esta procura de SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Permitir que calquera usuario poida acceder a este marcador"
@@ -7317,7 +7376,7 @@ msgstr "Definición da PARTICIÓN"
msgid "+ Add a new value"
msgstr "Engadir un servidor novo"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tempo"
@@ -7562,7 +7621,7 @@ msgid "Protocol version"
msgstr "Versión do protocolo"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Usuario"
@@ -7862,7 +7921,7 @@ msgstr "Crear"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operador"
@@ -8066,17 +8125,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:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Ficheiros"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Interrumpir as procuras mostradas"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Mostrar as procuras completas"
@@ -8610,7 +8669,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Mostrar o estado do principal"
@@ -8770,180 +8829,167 @@ msgstr ""
"Este servidor non está configurado como escravo nun proceso de replicación. "
"Desexa configuralo ?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Refrescar"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "en uso"
+msgstr[1] "en uso"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "por segundo"
+msgstr[1] "por segundo"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Finalizouse o fío %s."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Manipulador"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "caché de procuras"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Fíos"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Datos temporais"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Insercións demoradas"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "caché da chave"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Unións"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Ordenación"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Coordinador da transacción"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Limpar (fechar) todas as táboas"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Mostrar as táboas abertas"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Mostrar os servidores escravos"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Mostrar o estado dos escravos"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Limpar a caché da pesquisa"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Información sobre o tempo de execución"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Escolla de servidor"
-#: server_status.php:368
-#, fuzzy
-#| msgid "Show statistics"
-msgid "Query statistics"
-msgstr "Mostrar as estatísticas"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Ver a táboa de estado do escravo"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Refrescar"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "por segundo"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "por segundo"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "en uso"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Non mude o contrasinal"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Mostrar as táboas abertas"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacións"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "por hora"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "por segundo"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tipo de procura"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Este servidor de MySQL leva funcionando %s. Iniciouse às %s."
-#: server_status.php:627
+#: server_status.php:636
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -8952,21 +8998,21 @@ msgid ""
msgstr ""
"Este servidor está configurado como principal nun proceso de replicación."
-#: server_status.php:629
+#: server_status.php:638
#, 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:631
+#: server_status.php:640
#, 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:633
+#: server_status.php:642
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -8974,21 +9020,21 @@ msgstr ""
#| "href=\"#replication\">replication section."
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Este servidor de MySQL server funciona como %s en proceso de replicación"
"b>. Para máis información acerca do estado de replicación do servidor visite "
"a sección sobre replicación ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Estado da replicación"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Tráfico"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8997,45 +9043,41 @@ msgstr ""
"que esas estatísticas, tal e como as transmite o servidor de MySQL, poden "
"resultar incorrectas."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Recibido"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Conexións"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "conexións simultáneas máximas"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Tentativas falidas"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Cancelado"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesos"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "Identificador"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -9045,16 +9087,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -9066,11 +9108,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Número de ficheiros temporais creados por mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9078,7 +9120,7 @@ msgstr ""
"Número de táboas temporais na memoria creadas automaticamente polo servidor "
"ao executar instrucións."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9086,7 +9128,7 @@ msgstr ""
"Número de fileiras escritas con INSERT DELAYED que sofriron algún erro "
"(probabelmente unha chave duplicada)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -9094,23 +9136,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Número de fileiras INSERT DELAYED escritas."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Número de instrucións FLUSH executadas."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Número de instrucións COMMIT internas."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -9120,7 +9162,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:854
+#: server_status.php:863
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, "
@@ -9131,7 +9173,7 @@ msgstr ""
"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea "
"indexada."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -9139,7 +9181,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:856
+#: server_status.php:865
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 "
@@ -9149,7 +9191,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9157,7 +9199,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:858
+#: server_status.php:867
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 "
@@ -9169,7 +9211,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:859
+#: server_status.php:868
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 "
@@ -9181,35 +9223,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Número de páxinas actualmente suxas."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Número de páxinas libres."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -9219,7 +9261,7 @@ msgstr ""
"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por "
"algunha outra razón."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -9231,11 +9273,11 @@ msgstr ""
"se pode calcular así: Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Tamaño total do búfer, en páxinas."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -9244,7 +9286,7 @@ msgstr ""
"cando unha procura vai examinar unha porción grande dunha táboa mais en orde "
"aleatoria."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9252,11 +9294,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:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9264,7 +9306,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:874
+#: server_status.php:883
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 "
@@ -9278,55 +9320,55 @@ msgstr ""
"que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser "
"pequeno."
-#: server_status.php:875
+#: server_status.php:884
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:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Número de operacións fsync() até o momento."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Número actual de operacións fsync() pendentes."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Número actual de lecturas pendentes."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Número actual de escritas pendentes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Cantidade de datos lida até o momento, en bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Número total de lecturas de datos."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Número total de escritas de datos."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Cantidade de datos escrita até o momento, en bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -9334,35 +9376,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Número de peticións de escrita no rexistro."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Número de escritas físicas no ficheiro de rexistro."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Número de fsyncs do ficheiro de rexistro pendentes."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Escritas no ficheiro de rexistro pendentes."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Número de bytes escritos no ficheiro de rexistro."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Número de páxinas creadas."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9371,55 +9413,55 @@ msgstr ""
"cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente "
"en bytes."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Número de páxinas lidas."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Número de páxinas escritas."
-#: server_status.php:897
+#: server_status.php:906
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:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Número de fileiras eliminadas das táboas InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Número de fileiras inseridas nas táboas InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Número de fileiras lidas das táboas InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Número de fileiras actualizadas en táboas InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9427,7 +9469,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:907
+#: server_status.php:916
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."
@@ -9435,7 +9477,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:908
+#: server_status.php:917
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 "
@@ -9445,11 +9487,11 @@ msgstr ""
"referencia superior que indica o número máximo de bloques que se teñen "
"empregado."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9459,15 +9501,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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,19 +9520,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9498,38 +9540,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Número de ficheiros abertos."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Número de táboas abertas."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Cantidade de memoria libre para a caché de procuras."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Número de impactos na caché."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Número de procuras adicionadas na caché."
-#: server_status.php:924
+#: server_status.php:933
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,7 +9583,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9549,19 +9591,19 @@ msgstr ""
"Número de procuras non enviadas á caché (que non se poden enviar debido á "
"configuración de query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Número de procuras rexistradas na caché."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Número total de bloques na caché de procuras."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Estado da replicación en modo seguro (aínda non realizado)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9569,13 +9611,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9584,7 +9626,7 @@ msgstr ""
"cada fileira (se non for 0, debería comprobar con atención os índices das "
"táboas)."
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9592,15 +9634,15 @@ msgstr ""
"Número de unións que utilizaron intervalos na primeira táboa (Normalmente "
"non é grave, mesmo de ser grande)"
-#: server_status.php:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9608,11 +9650,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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9620,14 +9662,14 @@ msgstr ""
"Número de fíos aos que lles levou crearse máis segundos dos indicados en "
"slow_launch_time."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9637,23 +9679,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Número de ordenacións feitas con intervalos."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Número de fileiras ordenadas."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9665,7 +9707,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:945
+#: server_status.php:954
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 "
@@ -9675,11 +9717,11 @@ msgstr ""
"calcular como Threads_created/Connections. Se este valor for vermello, "
"debería aumentar a thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Número de conexións abertas neste momento."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9691,7 +9733,7 @@ msgstr ""
"non fornece unha mellora notábel no desempeño se ten unha boa implementación "
"de fíos.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Número de fíos que non están a durmir."
@@ -9820,7 +9862,7 @@ msgstr "Variábeis e configuración do servidor"
msgid "Session value"
msgstr "Valor da sesión"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valor global"
@@ -10204,41 +10246,41 @@ msgstr "A chave é curta de máis; debería ter un mínimo de oito caracteres"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Visualizar valores alleos"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identificador da fileira inserida: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Mostrar procura SQL"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validar o SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas cos índices da táboa `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Nome"
@@ -10634,25 +10676,25 @@ msgstr "Límite das chaves alleas"
msgid "No rows selected"
msgstr "Non hai ningunha fileira seleccionada"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Seleccione os campos (mínimo un)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Condición da pesquisa (ou sexa, o complemento da cláusula \"WHERE\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Número de rexistros por páxina:"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Mostrar en orde:"
@@ -10954,6 +10996,14 @@ msgstr "Nome da VISTA"
msgid "Rename view to"
msgstr "Mudar o nome da táboa para"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Estilo"
+
+#, fuzzy
+#~| msgid "per second"
+#~ msgid "seconds"
+#~ msgstr "por segundo"
+
#, fuzzy
#~| msgid "Query results operations"
#~ msgid "Query results"
diff --git a/po/he.po b/po/he.po
index 7693eb0dc8..0eced3e5af 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: \n"
"Language-Team: hebrew \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "הצג הכל"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -35,23 +35,23 @@ msgid ""
"cross-window updates."
msgstr "עדכון חלון הדפדפן הנבחר נכשל."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "חיפוש"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -68,7 +68,7 @@ msgstr "חיפוש"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -81,7 +81,7 @@ msgstr "שמות מפתח"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "תיאור"
@@ -132,7 +132,7 @@ msgstr "הערות טבלה"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -147,7 +147,7 @@ msgstr "שמות עמודה"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "סוג"
@@ -163,7 +163,7 @@ msgstr "סוג"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -192,7 +192,7 @@ msgstr "קישורים אל"
msgid "Comments"
msgstr "הערות"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -203,12 +203,12 @@ msgstr "הערות"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "לא"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -223,7 +223,7 @@ msgstr "לא"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -242,11 +242,11 @@ msgstr "ראיית הוצאה (תבנית) של מאגר נתונים"
msgid "No tables found in database."
msgstr "לא נמצאו טבלאות במאגר נתונים."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "בחירת הכל"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "בטל בחירת הכל"
@@ -268,7 +268,7 @@ msgstr "מאגר נתונים %s הועתק אל %s"
msgid "Rename database to"
msgstr "שינוי שם מאגר נתונים אל"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "פקודה"
@@ -332,7 +332,7 @@ msgstr "מעבר למאגר נתונים שהועתק"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -361,7 +361,7 @@ msgstr "הצגת תרשים PDF"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "טבלה"
@@ -377,7 +377,7 @@ msgstr "שורות"
msgid "Size"
msgstr "גודל"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "בשימוש"
@@ -403,7 +403,7 @@ msgstr "עדכון אחרון"
msgid "Last check"
msgstr "נבדק לאחרונה"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -424,25 +424,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "סידור"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "עולה"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "יורד"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "ראייה"
@@ -465,7 +465,7 @@ msgstr "מחיקה"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "או"
@@ -498,59 +498,59 @@ msgstr "השתמש בטבלאות"
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "שליחת שאילתה"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "גישה נדתחה"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "לפחות אחת מן המילים"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "כל המילים"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "הביטוי המדוייק"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "כביטוי רגיל"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "תוצאות חיפוש עבור \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "עיון"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "הוצאת מידע עבור טבלה"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -561,7 +561,7 @@ msgstr "הוצאת מידע עבור טבלה"
msgid "Delete"
msgstr "מחיקה"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -569,173 +569,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "סה\"כ: %s פריטים"
msgstr[1] "סה\"כ: %s פריטים"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "חפש במסד הנתונים"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "מילים או ערכים עבור חיפוש (תו כללי: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "מצא:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "מילים מופרדות ע\"י תו רווח (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "בתוך הטבלה/הטבלאות:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "בתוך הטבלה/הטבלאות:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "לא נמצאו טבלאות במאגר נתונים."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "טבלה %s רוקנה"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "שדה %s נמחק"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "טבלה %s נמחקה"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "יחסים"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "סכום"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "עם הנבחרים:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "בחירת הכל"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "בטל סימון הכל"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "בדיקת טבלאות עבור תקורה"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ייצוא"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "תצוגת הדפסה"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "ריקון"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "הסרה"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "בדיקת טבלה"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "ייעול טבלה"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "תיקון טבלה"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "ניתוח טבלה"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "החלפת נתוני הטבלה עם הקובץ"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "החלפת נתוני הטבלה עם הקובץ"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "מילון מידע"
@@ -750,9 +750,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "מאגר נתונים"
@@ -769,8 +769,8 @@ msgstr "יצירה"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "מצב"
@@ -908,7 +908,7 @@ msgstr "כתובת מועדפת נמחקה."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -931,7 +931,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -957,15 +957,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "הוראות \"DROP DATABASE\" מבוטלות."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "האם אתה באמת רוצה "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "אתה עומד להרוס מאגר נתונים שלם!"
@@ -1065,183 +1065,225 @@ msgstr "הסרת משתמשים שנבחרו"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "בחירת שרת"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "שאילתת SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "סה\"כ"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "מקומי"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "תהליכים"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "שינוי שם מאגר נתונים אל"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "שינוי שם מאגר נתונים אל"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "העתקת מאגר נתונים אל"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "קידוד"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "טבלה חייבית להכיל לפחות שדה אחד."
-
-#: js/messages.php:96
-#, fuzzy
-msgid "Create Table"
-msgstr "יצירת עמוד חדש"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "השתמש בטבלאות"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "חיפוש"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "שאילתת SQL"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "שאילתת SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "עיון"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "מוחק %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "שאילתת SQL"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "שאילתת SQL"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "מנועים"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "עריכה"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "בחירת שרת"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "שאילתת SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "סה\"כ"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "בחירת שרת"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "תהליכים"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "חיבורים"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "שאילתת SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "סטטיסטיקת שורה"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "מקומי"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "תהליכים"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "שינוי שם מאגר נתונים אל"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "שינוי שם מאגר נתונים אל"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "העתקת מאגר נתונים אל"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "קידוד"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "Table must have at least one field."
+msgid "Table must have at least one column"
+msgstr "טבלה חייבית להכיל לפחות שדה אחד."
+
+#: js/messages.php:109
+#, fuzzy
+msgid "Create Table"
+msgstr "יצירת עמוד חדש"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "השתמש בטבלאות"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "חיפוש"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "שאילתת SQL"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "שאילתת SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "עיון"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "מוחק %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "שאילתת SQL"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "שאילתת SQL"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "מנועים"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1249,77 +1291,77 @@ msgstr "עריכה"
msgid "Save"
msgstr "שמירה"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "שאילתת SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "שאילתת SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "התעלמות"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "בחירת שדה להצגה"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "ייצור סיסמא"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "ייצור"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "שינוי סיסמא"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "יום שני"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1327,128 +1369,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "אין מאגרי נתונים"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ללא"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "הקודם"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "הבא"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "סה\"כ"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "בינארי"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "מרץ"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "אפריל"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "מאי"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "יוני"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "יולי"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "אוגוסט"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "אוקטובר"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1456,176 +1498,176 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "דצמבר"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "יום ראשון"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "יום שני"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "יום שלישי"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "יום שישי"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "שבת"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "יום ראשון"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "יום שני"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "יום שלישי"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "יום רביעי"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "יום חמישי"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "יום שישי"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "שבת"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "בשימוש"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1718,7 +1760,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "מאגרי נתונים"
@@ -1785,25 +1827,25 @@ msgstr "%s מובטל על שרת MySQL זה."
msgid "This MySQL server does not support the %s storage engine."
msgstr "שרת MySQL לא תומך במנוע אחסון %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "טבלה %s שונתה אל %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1835,10 +1877,9 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "תבנית / סגנון"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1846,7 +1887,6 @@ msgstr "חיבור נכשל: הגדרות לא תקינות."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "ברוך הבא אל %s"
@@ -1994,7 +2034,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "טבלאות"
@@ -2076,7 +2116,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "שרת"
@@ -2124,7 +2163,7 @@ msgid "Documentation"
msgstr "תיעוד"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "שאילתת SQL"
@@ -2132,122 +2171,122 @@ msgstr "שאילתת SQL"
msgid "MySQL said: "
msgstr "MySQL אמר: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "הסברת SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "ללא קוד PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "ייצור קוד PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "רענון"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
#, fuzzy
msgid "Skip Validate SQL"
msgstr "בדיקת תקינות SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "בדיקת תקינות SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "מנועים"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "התחלה"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "הקודם"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "סיום"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "קפיצה אל מאגר נתונים "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2259,41 +2298,41 @@ msgstr ""
msgid "Structure"
msgstr "מבנה"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "הכנסה"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "פעולות"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
msgid "Select from the web server upload directory %s :"
msgstr "שמירת שרת בתוך תיקיית %s"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2649,7 +2688,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4620,7 +4659,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "הרשאות"
@@ -4632,7 +4671,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4837,9 +4876,9 @@ msgstr "חבילת הקידוד של הקובץ:"
msgid "Compression:"
msgstr "דחיסה"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "ללא"
@@ -4973,39 +5012,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "הוספת/מחיקת עמודות שדה"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d הוא לא מספר שורה תקין."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "שורות המתחילות מרשומה #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "מאוזן"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "מאוזן (headers מסובבים)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "ניצב"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "במצב %s וחזור אחרי Headers לאחר %s תאים"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5018,103 +5075,103 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "פעולות"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "טקסטים חלקיים"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "טקסטים מלאים"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "תצוגת יחסים"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
msgid "Relational display column"
msgstr "תצוגת יחסים"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
#, fuzzy
msgid "Browser transformation"
msgstr "שינויי צורה זמינים"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "העתקה"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "השורה נמחקה"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "בשאילתה"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "מראה שורות"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "סה\"כ"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "שאילתה לקחה %01.4f שניות"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "שינוי"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "תצוגת הדפסה (עם טקסטים מלאים)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "מציג הערות עמודה"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "גרסת שרת"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "קישור לא נמצא"
@@ -5158,7 +5215,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "מצב InnoDB"
@@ -5627,7 +5684,7 @@ msgstr "סוגי MIME זמינים"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "מארח"
@@ -5837,7 +5894,7 @@ msgstr "תוצאת SQL"
msgid "Generated by"
msgstr "נוצר ע\"י"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)."
@@ -5999,7 +6056,7 @@ msgstr ""
msgid "Add prefix"
msgstr "הוספת שדה חדש"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "ללא שינוי"
@@ -6326,14 +6383,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "משתנה"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "ערך"
@@ -6572,20 +6629,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "דו\"ח בינארי"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "משתנים"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "קידודים"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "מנועים"
@@ -6635,11 +6692,11 @@ msgstr "לוח שנה"
msgid "Columns"
msgstr "שמות עמודה"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "הכנס שאילתת SQL זאת למועדפים"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת"
@@ -6862,7 +6919,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "הוספת משתמש חדש"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "זמן"
@@ -7024,7 +7081,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "משתמש"
@@ -7297,7 +7354,7 @@ msgstr "יצירה"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "פעולות"
@@ -7488,18 +7545,18 @@ msgstr "הטבלה \"%s\" לא קיימת!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "שדות"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "הראה שאילתות שלמות"
@@ -8022,7 +8079,7 @@ msgstr "ההרשאות נטענו מחדש בהצלחה."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8161,264 +8218,248 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr ""
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר."
-
-#: server_status.php:230
-msgid "Handler"
-msgstr ""
-
-#: server_status.php:231
-#, fuzzy
-msgid "Query cache"
-msgstr "סוג שאילתה"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr ""
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr ""
-
-#: server_status.php:235
-#, fuzzy
-msgid "Delayed inserts"
-msgstr "השתמש בהכנסות מעוכבות"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr ""
-
-#: server_status.php:237
-msgid "Joins"
-msgstr ""
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr ""
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr ""
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr ""
-
-#: server_status.php:254
-#, fuzzy
-msgid "Show open tables"
-msgstr "ראיית טבלאות"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr ""
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "מידע זמן ריצה"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "בחירת שרת"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "סטטיסטיקת שורה"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "רענון"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "לשנייה"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "לשנייה"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "בשימוש"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "בשימוש"
+msgstr[1] "בשימוש"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "לשנייה"
+msgstr[1] "לשנייה"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr ""
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר."
+
+#: server_status.php:263
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:264
+#, fuzzy
+msgid "Query cache"
+msgstr "סוג שאילתה"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:268
+#, fuzzy
+msgid "Delayed inserts"
+msgstr "השתמש בהכנסות מעוכבות"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:270
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:287
+#, fuzzy
+msgid "Show open tables"
+msgstr "ראיית טבלאות"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "מידע זמן ריצה"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "בחירת שרת"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "אל תשנה את הסיסמא"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "ראיית טבלאות"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "יחסים"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "לשעה"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "לדקה"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "לשנייה"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "סוג שאילתה"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Traffic"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "התקבל"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "נשלח"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "חיבורים"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "ניסיונות כושלים"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "בוטל"
-#: server_status.php:778
-msgid "Processes"
-msgstr "תהליכים"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "קוד זיהוי"
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8426,78 +8467,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8505,7 +8546,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8513,42 +8554,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8556,33 +8597,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8591,227 +8632,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8819,99 +8860,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8919,18 +8960,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8938,7 +8979,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9061,7 +9102,7 @@ msgstr "משתני והגדרות שרת"
msgid "Session value"
msgstr "ערך זמן חיבור (Session)"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "ערך גלובלי"
@@ -9339,41 +9380,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "בדיקת תקינות SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "בעיות עם אינדקסים של טבלה `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "תווית"
@@ -9759,25 +9800,25 @@ msgstr ""
msgid "No rows selected"
msgstr "לא נבחרו שורות"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "בחירת שדות (לפחות אחד):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "מספר של שורות לכל דף"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "סדר תצוגה:"
@@ -10073,12 +10114,15 @@ msgstr ""
msgid "Rename view to"
msgstr "שינוי שם טבלה אל"
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "Theme / Style"
+#~ msgstr "תבנית / סגנון"
+
+#~ msgid "seconds"
+#~ msgstr "לשנייה"
+
#~ msgid "Query results"
#~ msgstr "תוצאת SQL"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "איפוס"
@@ -10086,8 +10130,6 @@ msgstr "שינוי שם טבלה אל"
#~ msgid "Show processes"
#~ msgstr "ראיית תהליכים"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "איפוס"
@@ -10097,31 +10139,20 @@ msgstr "שינוי שם טבלה אל"
#~ "the server."
#~ msgstr "סטטיטיקת שאילתות : מאז ההפעלה, %s שאילתות נשלחו לשרת."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "ההרשאות נטענו מחדש בהצלחה."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "יכול להיות הערכה. ראה FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "סוג שאילתה"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "הוספת משתמש חדש"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "גרסת שרת"
diff --git a/po/hi.po b/po/hi.po
index 246ff6135f..b816a6f711 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,9 +3,9 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-05-06 09:13+0200\n"
-"Last-Translator: \n"
+"Last-Translator: \n"
"Language-Team: hindi \n"
"Language: hi\n"
"MIME-Version: 1.0\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "सभी दिखाओ"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है,"
"या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "खोजें"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "खोजें"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "मुख्यनाम"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "वर्णन"
@@ -136,7 +136,7 @@ msgstr " टेबल टिप्पणि:"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "कोलम"
@@ -149,7 +149,7 @@ msgstr "कोलम"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "टाइप"
@@ -165,7 +165,7 @@ msgstr "टाइप"
msgid "Null"
msgstr "अशक्त"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "के लिए लिंक"
msgid "Comments"
msgstr "टिप्पणी"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "टिप्पणी"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "नहीं"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "नहीं"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "डेटाबेस का डंप (स्कीमा) दिखा
msgid "No tables found in database."
msgstr "डाटाबेस में कोई टेबल नहीं।"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "सभी का चयन करें"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "सभी को रद्द करें"
@@ -270,7 +270,7 @@ msgstr " डेटाबेस %s से %s में कॉपी किया
msgid "Rename database to"
msgstr "डेटाबेस का नाम बदल कर ____ रखें"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "आदेश"
@@ -331,7 +331,7 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -356,7 +356,7 @@ msgstr "संबंधपरक स्कीमा को संपादित
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "टेबल "
@@ -372,7 +372,7 @@ msgstr "रो"
msgid "Size"
msgstr "आकार"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "उपयोग में"
@@ -398,7 +398,7 @@ msgstr "पिछला नवीनीकरण"
msgid "Last check"
msgstr "पिछली जाँच"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +418,25 @@ msgid "visual builder"
msgstr "दृश्य बिल्डर"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "सॉर्ट"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "आरोही"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "अवरोही"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "दिखाओ"
@@ -459,7 +459,7 @@ msgstr "हटाइए"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "अथवा"
@@ -488,58 +488,58 @@ msgstr "टेबल का उपयोग करो"
msgid "SQL query on database %s :"
msgstr "डेटाबेस %s पर SQL क्वरी:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "क्वरी प्रस्तुत करें"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "प्रवेश निषेध"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "कोई भी एक शब्द"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "सभी शब्द"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "यथार्थ वाक्यांश"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "नियमित अभिव्यक्ति के रूप में"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "%s %s के लिये परिणाम खोजें:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s टेबल के अंदर %s मैच हैं."
msgstr[1] "%s टेबल के अंदर %s मैच हैं."
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "ब्राउज़"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "इस %s टेबल से मैच हटाएँ"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -550,177 +550,177 @@ msgstr "इस %s टेबल से मैच हटाएँ"
msgid "Delete"
msgstr "मिटाएँ"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "कुल: %s मैच"
msgstr[1] "कुल: %s मैच"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "डाटाबेस में खोजें"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "खोजो:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "शब्द स्पेस(\" \") करक्टेर से अलग किये गए हैं."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr " टेबल में:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "काँलम के अंदर:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "डाटाबेस में कोई टेबल नहीं।"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr " टेबल %s को खाली किया गया है."
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "द्रश्य %s रद्द दिया गया है."
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr " टेबल %s को रद्द किया गया है."
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "ट्रैकिंग सक्रिय है"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "ट्रैकिंग सक्रिय नहीं है."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "दृश्य"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "प्रतिकृति"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "जोड"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "चुने हुओं को:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "सभी को चेक करें"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr " सभी को अनचेक करें"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें."
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "निर्यात"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "छापने वाला द्रश्य."
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "खाली करें"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "छोड़ें"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr " टेबल को चेक करें"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "टेबल को अनुकूलित करें"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "टेबल को टीक करें"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "टेबल का विश्लेषण करें"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "टेबल पर जायें"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "फाइल, टेबल डेटा की जगह"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "फाइल, टेबल डेटा की जगह"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "डेटा शब्दकोश"
@@ -735,9 +735,9 @@ msgstr "ट्रैक की गयी टेबलएं"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr " डाटाबेस"
@@ -753,8 +753,8 @@ msgstr "बनाया"
msgid "Updated"
msgstr "अद्यतन"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "स्थिति"
@@ -896,7 +896,7 @@ msgstr "यह बुकमार्क हटा दिया गया है"
msgid "Showing bookmark"
msgstr "बुकमार्क प्रदर्शित किया जा रहा है."
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "बुकमार्क %s बनाया"
@@ -922,7 +922,7 @@ msgstr ""
"सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -948,15 +948,15 @@ msgstr "चयन करने के लिए क्लिक करें."
msgid "Click to unselect"
msgstr "रद्द करने के लिए क्लिक करें."
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "क्या आप सचमुच चाहते है की"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
@@ -1034,10 +1034,8 @@ msgstr "पासवर्ड मिलते झूलते नहीं ह
#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
-#, fuzzy
-#| msgid "Any user"
msgid "Add user"
-msgstr "कोई भी यूसर"
+msgstr "naya upyokta"
#: js/messages.php:59
msgid "Reloading Privileges"
@@ -1052,166 +1050,208 @@ msgstr "चयनित यूसर को हटायें"
msgid "Close"
msgstr "बंद"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "सर्वर चुनिये"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "क्वरी चार्ट शो"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "कुल"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "लोड हो रहा है"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "याचिका प्रसंस्करण"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "याचिका प्रसंस्करणमें त्रुटि"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "काँलम गिराना"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "प्राथमिक कुंजी जोड़"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "डेटाबेस का नाम बदल कर ____ रखें"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "डेटाबेस पुनः लोड"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "डेटाबेस को ______ में कॉपी करें"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "वर्ण सेट बदलें"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "नया टेबल बनाऐं"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "टेबल का उपयोग करो"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "खोजें"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "खोज मापदंड छिपाना"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "खोज मापदंड दिखाना"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "ब्राउज़"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Delete"
-msgid "Deleting"
-msgstr "मिटाएँ"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "क्वरी बॉक्स छुपा"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "क्वेरी बॉक्स दिखाएँ"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "इनलाइन संपादन"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "सम्पादन"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "सर्वर चुनिये"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query chart"
+msgid "Live query chart"
+msgstr "क्वरी चार्ट शो"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "कुल"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "सर्वर चुनिये"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "प्रक्रियां"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "कनेक्शन"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL क्वरी"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr " डाटाबेसों के सांख्यिकी"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "लोड हो रहा है"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "याचिका प्रसंस्करण"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "याचिका प्रसंस्करणमें त्रुटि"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "काँलम गिराना"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "प्राथमिक कुंजी जोड़"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "डेटाबेस का नाम बदल कर ____ रखें"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "डेटाबेस पुनः लोड"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "डेटाबेस को ______ में कॉपी करें"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "वर्ण सेट बदलें"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "नया टेबल बनाऐं"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "टेबल का उपयोग करो"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "खोजें"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "खोज मापदंड छिपाना"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "खोज मापदंड दिखाना"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "ब्राउज़"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Delete"
+msgid "Deleting"
+msgstr "मिटाएँ"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "क्वरी बॉक्स छुपा"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "क्वेरी बॉक्स दिखाएँ"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "इनलाइन संपादन"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1219,67 +1259,67 @@ msgstr "सम्पादन"
msgid "Save"
msgstr "बचाना"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "छिपाना"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "खोज मापदंड छिपाना"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "खोज मापदंड दिखाना"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "ध्यान न देना"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "संदर्भित कुंजी का चयन करें."
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "विदेश कुंजी का चयन करें."
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "प्रदर्शित करने के लिए काँलम चयन करें."
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "काँलम के लिए एक विकल्प जोड़ें"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "पासव्रड उत्पन्न करें"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "उत्पन्न"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "पासवर्ड बदलिये "
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "अधिक"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1288,260 +1328,260 @@ msgstr ""
"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", नवीनतम स्थिर संस्करण:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "डेटाबेस को कूद"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "किया"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "पिछला"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr " अगला"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "आज"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "जनवरी"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "फरवरी"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "मार्च"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "अप्रैल"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "मई"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "जून"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "जुलाई"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "अगस्त"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "सितम्बर"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "अक्तूबर"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "नवम्बर"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "दिसमबर"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "रविवार"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "सोमवार"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "मन्गलवार"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "बुधवार"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "गुरूवार"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "शुक्रवार"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "शनिवार"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "शनिवार"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "रविवार"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "सोमवार"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "मन्गलवार"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "बुधवार"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "गुरुवार"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "शुक्रवार"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "शनिवार"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "हफ्ता"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "घंटा"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "मिनट"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "सेकंड"
@@ -1632,7 +1672,7 @@ msgstr "सूचकांक %1s और %2s बराबर लगने के
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr " डाटाबेस"
@@ -1702,25 +1742,25 @@ msgstr "%s इस MySQL सर्वर के लिए निष्क्र
msgid "This MySQL server does not support the %s storage engine."
msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "अमान्य डेटाबेस"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "अवैध टेबल नाम"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि."
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "टेबल %s का नाम बदल कर %s रखा गया है."
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1752,10 +1792,9 @@ msgstr "विषयवस्तु %s नहीं मिला है!"
msgid "Theme path not found for theme %s!"
msgstr "विषय %s के लिए थीम पथ नहीं मिला है!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "थीम/शैली "
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1763,7 +1802,6 @@ msgstr "अमान्य सेटिंग्स: कनेक्ट नह
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr " %s मे स्वागत है"
@@ -1913,7 +1951,7 @@ msgstr "साझा"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "टेबल"
@@ -1994,7 +2032,6 @@ msgstr "%1$s सर्वर के लिए होस्टनाम अवै
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "सर्वर"
@@ -2042,7 +2079,7 @@ msgid "Documentation"
msgstr "डोक्युमेंटेशन"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL क्वरी"
@@ -2050,119 +2087,119 @@ msgstr "SQL क्वरी"
msgid "MySQL said: "
msgstr "MySQL ने कहा: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "SQL वलिदटर से जुड़ने में विफल"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL की व्याख्या "
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL की व्याख्या को छोड़ जाना"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "php कोड के बिना"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP Code बनाओ"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "ताज़ा करना"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL की पुष्टि को छोड़ जाना"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL की पुष्टि करना"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "इस कुएरी की इनलाइन एडिट"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "इनलाइन"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "रूपरेखा"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr " बैट्स"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y को %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "प्रारंभ"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "पिछला"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "आखरी"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" डेटाबेस पर जायें "
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे "
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2174,41 +2211,41 @@ msgstr "%s कार्यक्षमताएक एक बग के द्
msgid "Structure"
msgstr "संरचना"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "इनसर्ट"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "कार्रवाई"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "अपने कंप्यूटर ब्राउज़ करें"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s ; "
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं"
@@ -2562,7 +2599,7 @@ msgstr "डिफ़ॉल्ट सूची टैब"
msgid "Show binary contents as HEX by default"
msgstr "डिफ़ॉल्ट रूप से द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें"
@@ -4497,7 +4534,7 @@ msgstr "डिजाइनर"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr " प्रिविलेज"
@@ -4509,7 +4546,7 @@ msgstr "नियमित कार्य"
msgid "Return type"
msgstr "रिटर्न प्रकार"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4690,9 +4727,9 @@ msgstr "फ़ाइल का चरित्र सेट"
msgid "Compression:"
msgstr "संपीड़न"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "कोई नहीं"
@@ -4813,37 +4850,57 @@ msgstr "प्रारूप निर्दिष्ट विकल्पो
msgid "Language"
msgstr "भाषा"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "चयन करने के लिए क्लिक करें."
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d वैध रो संख्या नहीं है"
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "रो से शुरू #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "समतल"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "खडा"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr " %s रूप में और %s सेल के बाद शीर्षक को दोहराईये"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "कुंजी सॉर्ट"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4856,94 +4913,94 @@ msgstr "कुंजी सॉर्ट"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "विकल्प"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "आंशिक पाठ"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "पूर्ण पाठ"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "कुंजी संबंधपरक"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "संबंधपरक प्रदर्शन स्तंभ"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "द्विआधारी सामग्री दिखाने"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "BLOB सामग्री दिखाने"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "सामग्री दिखाने"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "अनुकृति"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "रौ को डिलीट कर दिया"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "रौ देखिये"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr " कुल"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "बदलिये"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display Features"
msgid "Display chart"
msgstr "फीचरस दिखाओ"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "दृश्य बनाइये"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "लिंक नहीं मिला"
@@ -4987,7 +5044,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "बफर पूल"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5444,7 +5501,7 @@ msgstr "फीचरस दिखाओ"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "होस्ट"
@@ -5652,7 +5709,7 @@ msgstr "SQLपरिणाम"
msgid "Generated by"
msgstr "द्वारा उत्पन्न"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ने एक खाली परिणाम सेट लोताया"
@@ -5811,7 +5868,7 @@ msgstr ""
msgid "Add prefix"
msgstr "अनुक्रमणिका जोड़"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "कोइ बदलाव नहीं"
@@ -6138,14 +6195,14 @@ msgid "Slave status"
msgstr "स्लाव की स्थिति"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "स्थिति"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "मूल्य"
@@ -6382,20 +6439,20 @@ msgid "Synchronize"
msgstr "सिंक्रनाइज़"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "बाइनरी लोग"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "प्रक्रियां"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "चरित्र सेट"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "इंजन"
@@ -6442,11 +6499,11 @@ msgstr "स्पष्ट"
msgid "Columns"
msgstr "कोलम"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "इस SQL-क्वरी को बुकमार्क कीजिये "
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए"
@@ -6651,7 +6708,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "नयी वलुए जोडें"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "समय"
@@ -6812,7 +6869,7 @@ msgid "Protocol version"
msgstr "अधिक सेटिंग्स"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "यूसर"
@@ -7079,7 +7136,7 @@ msgstr "कुल"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "ऑपरेटर"
@@ -7260,17 +7317,17 @@ msgstr "फ़ाइल मौजूद नहीं है"
msgid "Select binary log to view"
msgstr "द्विआधारी लॉग देखने के लिए चयनित करें"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "फाइलें"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "पूर्ण क्वरीों को दिखाएँ"
@@ -7786,7 +7843,7 @@ msgstr "मास्टर सर्वर सफलतापूर्वक प
msgid "This server is configured as master in a replication process."
msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है"
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "मास्टर अवस्था"
@@ -7923,263 +7980,248 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Thread %s को सफलता से मारा गया।"
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।"
-
-#: server_status.php:230
-msgid "Handler"
-msgstr "हैंडलर"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "क्वेरी कैश"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "थ्रेअद"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "अस्थायी डेटा"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "देरी आवेषण"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "कुंजी कैश"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "जोड़"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "छँटाई"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "लेन - देन समन्वयक"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "सभी टेबलओं फ्लश"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "खुला टेबल शो"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "फ्लश क्वेरी कैश"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "क्रम जानकारी"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "सर्वर चुनिये"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr " डाटाबेसों के सांख्यिकी"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "ताज़ा करना"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "सेकंड"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "सेकंड"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "मिनट"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "मिनट"
+msgstr[1] "मिनट"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "सेकंड"
+msgstr[1] "सेकंड"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Thread %s को सफलता से मारा गया।"
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।"
+
+#: server_status.php:263
+msgid "Handler"
+msgstr "हैंडलर"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "क्वेरी कैश"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "थ्रेअद"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "अस्थायी डेटा"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "देरी आवेषण"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "कुंजी कैश"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "जोड़"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "छँटाई"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "लेन - देन समन्वयक"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "सभी टेबलओं फ्लश"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "खुला टेबल शो"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "फ्लश क्वेरी कैश"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "क्रम जानकारी"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "सर्वर चुनिये"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "पासवर्ड मत बदलिये"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "खुला टेबल शो"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Replication"
msgid "Related links:"
msgstr "पसंबंधित लिंक"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "प्रति घंटे"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "प्रति मिनट"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "प्रति सेकंड"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "क्वरी प्रकार"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "प्रतिकृति स्थिति"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "ट्रैफ़िक"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "प्राप्त"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "भेजा"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "कनेक्शन"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "अधिकतम वर्तमान कनेक्शन"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "असफल प्रयास"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "रद्द"
-#: server_status.php:778
-msgid "Processes"
-msgstr "प्रक्रियां"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया"
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8187,78 +8229,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं"
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8266,7 +8308,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8274,42 +8316,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8317,33 +8359,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8352,227 +8394,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8580,99 +8622,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8680,18 +8722,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8699,7 +8741,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8820,7 +8862,7 @@ msgstr "सर्वर चर और सेटिंग्स"
msgid "Session value"
msgstr "सत्र मूल्य"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "वैश्विक मूल्य"
@@ -9094,39 +9136,39 @@ msgstr "कुंजी बहुत छोटा है, इसमें कम
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "विदेशी मूल्य ब्राउस करें "
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "इनसर्ट रो id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP कोड की तरह दिखाएँ"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "SQL क्वेरी शो"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "SQL मान्य"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "लेबल"
@@ -9500,23 +9542,23 @@ msgstr "विदेशी कुंजी बाधा"
msgid "No rows selected"
msgstr "कोई चयनित रो नहीं"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "काँलम चुनें (कम से कम एक)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "प्रति पृष्ट कितने रौ"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "क्रम से दिखाओ:"
@@ -9804,6 +9846,12 @@ msgstr "दृश्य का नाम"
msgid "Rename view to"
msgstr "दृश्य का नाम बदलो"
+#~ msgid "Theme / Style"
+#~ msgstr "थीम/शैली "
+
+#~ msgid "seconds"
+#~ msgstr "सेकंड"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "क्वेरी निष्पादन समय की तुलना"
diff --git a/po/hr.po b/po/hr.po
index a1e845e0b9..0f34d86867 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: croatian \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane "
"za blokiranje ažuriranja preko više prozora."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Traži"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Traži"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Naziv ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Opis"
@@ -138,7 +138,7 @@ msgstr "Komentari tablice"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -153,7 +153,7 @@ msgstr "Nazivi stupaca"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Vrsta"
@@ -169,7 +169,7 @@ msgstr "Vrsta"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -198,7 +198,7 @@ msgstr "Povezano s"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -209,12 +209,12 @@ msgstr "Komentari"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -229,7 +229,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -248,11 +248,11 @@ msgstr "Prikaži ispis (shemu) baze podataka"
msgid "No tables found in database."
msgstr "U bazi podataka nisu pronađene tablice."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Odaberi sve"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Ukloni sav odabir"
@@ -274,7 +274,7 @@ msgstr "Baza podataka %s kopirana je u %s"
msgid "Rename database to"
msgstr "Preimenuj bazu podataka u"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Naredba"
@@ -338,7 +338,7 @@ msgstr "Prebaci se na kopiranu bazu podataka"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -368,7 +368,7 @@ msgstr "Shema relacija"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tablica"
@@ -384,7 +384,7 @@ msgstr "Redaka"
msgid "Size"
msgstr "Veličina"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "u upotrebi"
@@ -410,7 +410,7 @@ msgstr "Posljednje ažuriranje"
msgid "Last check"
msgstr "Posljednja provjera"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -431,25 +431,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Presloži"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Uzlazno"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Silazno"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Prikaži"
@@ -472,7 +472,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ili"
@@ -505,39 +505,39 @@ msgstr "Upotrijebi tablice"
msgid "SQL query on database %s :"
msgstr "SQL upit nad bazom podataka %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Podnesi upit"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Pristup odbijen"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "najmanje jedna riječ"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "sve riječi"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "točan izraz"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "kao regularan izraz"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Rezultati pretraživanja za \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -545,20 +545,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s poklapanja unutar tablice %s "
msgstr[1] "%s poklapanja unutar tablice %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Pretraživanje"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Izbacivanje podataka za tablicu"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -569,7 +569,7 @@ msgstr "Izbacivanje podataka za tablicu"
msgid "Delete"
msgstr "Izbriši"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -577,62 +577,62 @@ msgid_plural "Total: %s matches"
msgstr[0] "Ukupno: %s poklapanja"
msgstr[1] "Ukupno: %s poklapanja"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Traži u bazi podataka"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Traži:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Riječi su razdvojene znakom razmaka (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Unutar tablica:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Unutar polja:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "U bazi podataka nisu pronađene tablice."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tablica %s je očišćena"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Index %s je ispušten"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tablica %s je odbačen"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -640,111 +640,111 @@ msgid ""
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Prikaz"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikacija"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Zbroj"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "S odabirom:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Ukloni sve oznake"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Provjeri za prepunjene tablice"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Prikaz ispisa"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Ispusti"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Provjeri tablicu"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimiziraj tablicu"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Popravi tablicu"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analiziraj tablicu"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "Nema baza podataka"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Podatke tablice zamijeni datotekom"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Podatke tablice zamijeni datotekom"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Rječnik podataka"
@@ -760,9 +760,9 @@ msgstr "Provjeri tablicu"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Baza podataka"
@@ -780,8 +780,8 @@ msgstr "Izradi"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Stanje"
@@ -930,7 +930,7 @@ msgstr "Favorit je izbrisan."
msgid "Showing bookmark"
msgstr "Prikazivanje oznake"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Izrađen je favorit %s"
@@ -958,7 +958,7 @@ msgstr ""
"povećate vremenska ograničenja unutar php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -986,15 +986,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" izjave su onemogućene."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Želite li zaista "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!"
@@ -1098,184 +1098,226 @@ msgstr "Ukloni odabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Odabir poslužitelja"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL upit"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Ukupno"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Lokalno"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Procesi"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Preimenuj bazu podataka u"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Preimenuj bazu podataka u"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Kopiraj bazu podataka u"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Tablica znakova"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Izradi tablicu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Upotrijebi tablice"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Traži"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL upit"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL upit"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Pretraživanje"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Brisanje %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL upit"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL upit"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Pogoni"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uređivanje"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Odabir poslužitelja"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL upit"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Ukupno"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Odabir poslužitelja"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesi"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Veze"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL upit"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Statistike redova"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Lokalno"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Procesi"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Preimenuj bazu podataka u"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Preimenuj bazu podataka u"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Kopiraj bazu podataka u"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Tablica znakova"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Izradi tablicu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Upotrijebi tablice"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Traži"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL upit"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL upit"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Pretraživanje"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Brisanje %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL upit"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL upit"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Pogoni"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1283,77 +1325,77 @@ msgstr "Uređivanje"
msgid "Save"
msgstr "Spremi"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Sakrij"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoriraj"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Odaberite referentni ključ"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Odaberite strani ključ"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Odaberite primarni ključ ili jedinstveni ključ"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generiraj lozinku"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generiraj"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promijeni lozinku"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1361,128 +1403,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Izradi relaciju"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Nema baza podataka"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "Podaci"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodni"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Sljedeće"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarno"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Ožu"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Tra"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Svi"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Lip"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Srp"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Kol"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Lis"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1490,178 +1532,178 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Pro"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "u upotrebi"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1757,7 +1799,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Baze podataka"
@@ -1828,25 +1870,25 @@ msgstr "%s je onemogućen za ovaj MySQL poslužitelj."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Neispravna baza podataka"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Neispravan naziv tablice"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tablica %s preimenovana je u %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1878,10 +1920,9 @@ msgstr "Tema %s nije pronađena!"
msgid "Theme path not found for theme %s!"
msgstr "Za temu %s nije pronađena putanje tema!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Stil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1889,7 +1930,6 @@ msgstr "Povezivanje nije moguće: neispravna postavka."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
@@ -2040,7 +2080,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tablice"
@@ -2131,7 +2171,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Poslužitelj"
@@ -2179,7 +2218,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL upit"
@@ -2187,121 +2226,121 @@ msgstr "SQL upit"
msgid "MySQL said: "
msgstr "MySQL je poručio: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Preskoči Objasni SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Izradi PHP kod"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Osvježi"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Preskoči provjeru valjanosti SQL-a"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Provjera valjanosti SQL-a"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Pogoni"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Izrada profila"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "kB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y u %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekunda"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Na vrh stranice"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Prethodni"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Završetak"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Skoči do baze podataka \"%s\"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2313,42 +2352,42 @@ msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s"
msgid "Structure"
msgstr "Strukturu"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Umetni"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacije"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "mapa učitavanja web poslužitelja"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2707,7 +2746,7 @@ msgstr "Preimenuj bazu podataka u"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4702,7 +4741,7 @@ msgstr "Kreator"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegije"
@@ -4714,7 +4753,7 @@ msgstr "Rutine"
msgid "Return type"
msgstr "Vrsta povratka"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4930,9 +4969,9 @@ msgstr "Tablica znakova za datoteku:"
msgid "Compression:"
msgstr "Kompresija"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "bez kompresije"
@@ -5082,39 +5121,57 @@ msgstr ""
msgid "Language"
msgstr "Jezik"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Dodaj/Izbriši stupce polja"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d nije valjani broj retka."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "redovi koji započinju zapisom #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "vodoravno"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "vodoravno (okrenuta zaglavlja)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "uspravno"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "u načinu %s i ponavljaj zaglavlja nakon %s ćelija"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Presloži po ključu"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5127,101 +5184,101 @@ msgstr "Presloži po ključu"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opcije"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Djelomični tekstovi"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Potpuni tekstovi"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relacijski ključ"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Polje za prikaz relacija"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pretvaranje preglednika"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Redak je izbrisan"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Eliminiraj"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "unutar upita"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Prikazivanje redaka"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sek"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Promijeni"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operacije rezultata upita"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Prikaz ispisa (s potpunim tekstovima)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Izradi relaciju"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -5269,7 +5326,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Međuspremnik"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB stanje"
@@ -5790,7 +5847,7 @@ msgstr "Raspoložive MIME vrste"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Računalo"
@@ -6000,7 +6057,7 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generirano s"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6162,7 +6219,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Bez izmjena"
@@ -6492,14 +6549,14 @@ msgid "Slave status"
msgstr "Prikaži stanje potčinjenog"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Varijabla"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Vrijednost"
@@ -6739,20 +6796,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binarni zapisnik"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Varijable"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Tablice znakova"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Pogoni"
@@ -6803,11 +6860,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Nazivi stupaca"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Favoriziraj ovaj SQL upit"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Neka svi korisnici imaju pristup ovom favoritu"
@@ -7044,7 +7101,7 @@ msgstr "Definicija PARTICIJE"
msgid "+ Add a new value"
msgstr "Dodaj novog korisnika"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Vrijeme"
@@ -7289,7 +7346,7 @@ msgid "Protocol version"
msgstr "Verzija protokola"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Korisnik"
@@ -7570,7 +7627,7 @@ msgstr "Izradi"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7768,17 +7825,17 @@ msgstr "Tablica \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr "Odaberite binarni zapisnik za prikaz"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Sreži prikazane rezultate"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Prikaži pune upite"
@@ -8312,7 +8369,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Prikaži stanje potčinjenog"
@@ -8453,205 +8510,195 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Grana %s uspješno je prekinuta."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Hvatišta"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Pohrana upita"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Grane"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Privremeni podaci"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Odgođena umetanja"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Pohrana ključeva"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Spojevi"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Preslagivanje"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Koordinator transakcije"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Isprazni (zatvori) sve tablice"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Prikaži otvorene tablice"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Prikaži potčinjena računala"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Prikaži stanje potčinjenog"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Isprazni pohranu upita"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Podaci o razini izvršavanja"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Odabir poslužitelja"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Statistike redova"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Osvježi"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "po sekundi"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "po sekundi"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "u upotrebi"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "u upotrebi"
+msgstr[1] "u upotrebi"
+msgstr[2] "u upotrebi"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "po sekundi"
+msgstr[1] "po sekundi"
+msgstr[2] "po sekundi"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Grana %s uspješno je prekinuta."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Hvatišta"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Pohrana upita"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Grane"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Privremeni podaci"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Odgođena umetanja"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Pohrana ključeva"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Spojevi"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Preslagivanje"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Koordinator transakcije"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Isprazni (zatvori) sve tablice"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Prikaži otvorene tablice"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Prikaži potčinjena računala"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Prikaži stanje potčinjenog"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Isprazni pohranu upita"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Podaci o razini izvršavanja"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Odabir poslužitelja"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ne mijenjaj lozinku"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "po satu"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "po minuti"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "po sekundi"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Vrsta upita"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Promet"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8660,45 +8707,41 @@ msgstr ""
"prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti "
"netočne."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Veze"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "najv. uzastopnih veza"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Neuspjeli pokušaji"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesi"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8708,17 +8751,17 @@ msgstr ""
"ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu "
"datoteku za pohranjivanje izjava transakcija."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8730,11 +8773,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Koliko je privremenih tablica izradio mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8742,7 +8785,7 @@ msgstr ""
"Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio "
"tijekom izvršavanja izjava."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8750,7 +8793,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:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8758,23 +8801,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Broj redaka zapisanih pomoću INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Broj izvršenih izjava FLUSH."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Broj internih izjava COMMIT."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8784,7 +8827,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:854
+#: server_status.php:863
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, "
@@ -8794,7 +8837,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:855
+#: server_status.php:864
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."
@@ -8802,7 +8845,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:856
+#: server_status.php:865
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 "
@@ -8812,7 +8855,7 @@ msgstr ""
"povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako "
"izvodite pretraživanje indeksa."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8820,7 +8863,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:858
+#: server_status.php:867
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 "
@@ -8832,7 +8875,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:859
+#: server_status.php:868
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 "
@@ -8844,36 +8887,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Broj internih izjava ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Broj zahtjeva za ažuriranje retka u tablici."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Broj zahtjeva za umetanje retka u tablici."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Broj stranice koje sadrže podatke (dirty ili clean)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Broj stranica koje su trenutno 'dirty'."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Broj slobodnih stranica."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8883,7 +8926,7 @@ msgstr ""
"čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog "
"drugog razloga."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8895,11 +8938,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Ukupna veličina međuspremnika, u stranicama."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8907,7 +8950,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8915,11 +8958,11 @@ msgstr ""
"Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se "
"događa kad InnoDB izvodi potpuno pretraživanje tablice."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8927,7 +8970,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:874
+#: server_status.php:883
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 "
@@ -8941,55 +8984,55 @@ msgstr ""
"prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno "
"postavljena, ova bi vrijednost trebala biti malenom."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Broj dosadašnjih fsync() operacija."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Trenutan broj fsync() operacija u čekanju."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Trenutan broj čitanja u čekanju."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Trenutan broj zapisivanja u čekanju."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Ukupan broj iščitavanja podataka."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Ukupan broj zapisivanja podataka."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8998,35 +9041,35 @@ msgstr ""
"međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka "
"rada."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Broj zahtjeva za zapisivanje u zapisnik."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Broj fizičkih zapisivanja u zapisnik."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Zapisivanja u zapisnik na čekanju."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Broj bajtova zapisanih u zapisnik."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Broj izrađenih stranica."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9035,52 +9078,52 @@ msgstr ""
"vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo "
"jednostavno pretvaranje u bajtove."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Broj iščitanih stranica."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Broj zapisanih stranica."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Broj zaključavanja redaka na koje se trenutno čeka."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama."
-#: server_status.php:899
+#: server_status.php:908
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:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama."
-#: server_status.php:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Broj redaka izbrisanih iz InnoDB tablica."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Broj redaka umetnutih u InnoDB tablice."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Broj redaka iščitanih iz InnoDB tablica."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Broj ažuriranih redaka u InnoDB tablicama."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9088,7 +9131,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:907
+#: server_status.php:916
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."
@@ -9096,7 +9139,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:908
+#: server_status.php:917
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 "
@@ -9106,11 +9149,11 @@ msgstr ""
"gornje razine koja označuje najveći broj blokova koji su ikad bili u "
"istovremenoj upotrebi."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9121,15 +9164,15 @@ msgstr ""
"promašivanja pohrane moguće je izračunati putem naredbi Key_reads/"
"Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9139,17 +9182,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9157,39 +9200,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Broj otvorenih datoteka."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Broj otvorenih tablica."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Količina slobodne memorije za pohranu upita."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Broj pronalaženja u pohrani."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Broj upita pridodanih u pohranu."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9202,7 +9245,7 @@ msgstr ""
"nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će "
"upite ukloniti iz pohrane."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9210,19 +9253,19 @@ msgstr ""
"Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog "
"postavke query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Broj upita registriranih u pohrani."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Ukupan broj blokova u pohrani upita."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9230,12 +9273,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9244,7 +9287,7 @@ msgstr ""
"retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite "
"indekse vaših tablica."
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9252,17 +9295,17 @@ msgstr ""
"Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije "
"kritično ako je ovaj iznos velik.)"
-#: server_status.php:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9270,12 +9313,12 @@ msgstr ""
"Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane "
"replikacijske potčinjene SQL grane."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9283,14 +9326,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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9300,23 +9343,23 @@ msgstr ""
"Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti "
"sistemske varijable sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Broj preslagivanja učinjenih pomoću opsega."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Broj presloženih redaka."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Količina trenutno postignutih zaključavanja tablica."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9328,7 +9371,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:945
+#: server_status.php:954
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 "
@@ -9338,11 +9381,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Broj trenutno otvorenih veza."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9354,7 +9397,7 @@ msgstr ""
"(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti "
"primjetna poboljšanja performansi.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Broj grana koje nisu uspavane."
@@ -9479,7 +9522,7 @@ msgstr "Varijable i postavke poslužitelja"
msgid "Session value"
msgstr "Vrijednost sesije"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Opća vrijednost"
@@ -9760,41 +9803,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pretraži strane vrijednosti"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Umetnut ID retka: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Prikazivanje kao PHP koda"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Prikazivanje SQL upita"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Provjera valjanosti SQL-a"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi s indeksima tablice `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Oznaka"
@@ -10186,25 +10229,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Odaberite polja (najmanje jedno):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Broj redaka po stranici"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Redoslijed prikaza:"
@@ -10501,8 +10544,12 @@ msgstr "Naziv prikaza"
msgid "Rename view to"
msgstr "Preimenuj prikaz u"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Stil"
+
+#~ msgid "seconds"
+#~ msgstr "po sekundi"
+
#~ msgid "Query results"
#~ msgstr "Operacije rezultata upita"
@@ -10516,8 +10563,6 @@ msgstr "Preimenuj prikaz u"
#~ msgid "Show processes"
#~ msgstr "Prikaži procese"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Povrat"
@@ -10535,31 +10580,20 @@ msgstr "Preimenuj prikaz u"
#~ msgstr ""
#~ "Statistike upita : Od pokretanja poslužitelju je upućeno %s upita."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Privilegije su uspješno učitane."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Može biti približno. Pogledajte ČPP 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Vrsta upita"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Dodaj novog korisnika"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Izradi relaciju"
diff --git a/po/hu.po b/po/hu.po
index 5610add684..c8843e5aae 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,9 +3,9 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
-"Last-Translator: \n"
+"Last-Translator: \n"
"Language-Team: hungarian \n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Összes mutatása"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"szülőablakot, vagy a böngésző biztonsági beállításai tiltják az ablakok "
"közti frissítést."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Keresés"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Keresés"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Kulcsnév"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Leírás"
@@ -137,7 +137,7 @@ msgstr "Tábla megjegyzése"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Oszlop"
@@ -150,7 +150,7 @@ msgstr "Oszlop"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Típus"
@@ -166,7 +166,7 @@ msgstr "Típus"
msgid "Null"
msgstr "Nulla"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Hivatkozások:"
msgid "Comments"
msgstr "Megjegyzések"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Megjegyzések"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nem"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Nem"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Adatbázis kiírás (vázlat) megtekintése"
msgid "No tables found in database."
msgstr "Nem található tábla az adatbázisban."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Mind kijelölése"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Mind törlése"
@@ -271,7 +271,7 @@ msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént"
msgid "Rename database to"
msgstr "Adatbázis átnevezése"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Parancs"
@@ -332,7 +332,7 @@ msgstr "A másolt adatbázisra váltás"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Kapcsolati séma szerkesztése, exportálása"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tábla"
@@ -373,7 +373,7 @@ msgstr "sorok"
msgid "Size"
msgstr "Méret"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "használatban"
@@ -399,7 +399,7 @@ msgstr "Utolsó frissítés"
msgid "Last check"
msgstr "Utolsó ellenőrzés"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "vizuális tervező"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Rendezés"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Növekvő"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Csökkenő"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Megjelenítés"
@@ -460,7 +460,7 @@ msgstr "Törlés"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Vagy"
@@ -489,58 +489,58 @@ msgstr "Felhasználandó táblák"
msgid "SQL query on database %s :"
msgstr "SQL-lekérdezés a(z) %s adatbázison:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Lekérdezés indítása"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "A hozzáférés megtagadva"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "legalább az egyik szó"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "minden szó"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "a pontos kifejezés"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "reguláris kifejezésként"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Keresési eredmények \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s találat a(z) %s táblában"
msgstr[1] "%s találat a(z) %s táblában"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Tartalom"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Törli a találatokat a %s táblában?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,65 +551,65 @@ msgstr "Törli a találatokat a %s táblában?"
msgid "Delete"
msgstr "Törlés"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Összesen: %s találat"
msgstr[1] "Összesen: %s találat"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Keresés az adatbázisban"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Keresés:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "A szavak elválasztása szóköz karakterrel (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Táblá(k)ban:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Mezőben:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Nem található tábla az adatbázisban."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "A(z) %s tábla kiürítése megtörtént"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "A(z) %s nézet eldobása kész"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "A(z) %s tábla eldobása megtörtént"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Nyomkövetés aktív."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Nyomkövetés inaktív."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -618,106 +618,106 @@ 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."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Nézet"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Többszörözés"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Összeg"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "A kijelöltekkel végzendő művelet:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Mind kijelölése"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Kijelölés törlése"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "A felülírott táblák kijelölése"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportálás"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Nyomtatási nézet"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Kiürítés"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Eldobás"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Tábla ellenőrzése"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Tábla optimalizálása"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Tábla javítása"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Tábla elemzése"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Előtag hozzáadása a táblához"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Tábla előtagjának lecserélése"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Tábla másolása előtaggal"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Adatkönyvtár"
@@ -732,9 +732,9 @@ msgstr "Nyomon követett táblák"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Adatbázis"
@@ -750,8 +750,8 @@ msgstr "Létrehozva"
msgid "Updated"
msgstr "frissítve"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Állapot"
@@ -897,7 +897,7 @@ msgstr "A könyvjelző törlése megtörtént."
msgid "Showing bookmark"
msgstr "Könyvjelző megjelenítése"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "A(z) %s könyvjelző elkészült"
@@ -926,7 +926,7 @@ msgstr ""
"növeli meg a PHP időkorlátozását."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -952,15 +952,15 @@ msgstr "Kattintson a kijelöléshez."
msgid "Click to unselect"
msgstr "Kattintson a kijelölés megszüntetéséhez."
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "A \"DROP DATABASE\" utasítást letiltották."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Valóban a következőt akarja "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
@@ -1054,167 +1054,209 @@ msgstr "A kijelölt felhasználók törlése"
msgid "Close"
msgstr "Bezárás"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Szerver választása"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Live query chart"
-msgstr "SQL-lekérdezési panelek"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Összesen"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ", "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Betöltés"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Kérés feldolgozása"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Hiba a kérés feldolgozásában"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Oszlop törlése"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Elsődleges kulcs hozzáadása"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Adatbázis(ok) átnevezése"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Adatbázis újratöltése"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Adatbázis másolása"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Karakterkészlet változtatása"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "A táblázatnak legalább egy oszlopot kell tartalmaznia."
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Tábla létrehozása"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Felhasználandó táblák"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Keresés"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Keresési kritériumok elrejtése"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Keresési kritériumok mutatása"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Tartalom"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "%s törlése"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "SQL-lekérdezési panelek elrejtése"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "SQL-lekérdezési panelek mutatása"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Inline szerkesztés"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Módosítás"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Szerver választása"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Live query chart"
+msgstr "SQL-lekérdezési panelek"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Összesen"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ", "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Szerver választása"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Folyamatok"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Kapcsolatok"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL-lekérdezések"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Lekérdezések statisztikája"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Betöltés"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Kérés feldolgozása"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Hiba a kérés feldolgozásában"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Oszlop törlése"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Elsődleges kulcs hozzáadása"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Adatbázis(ok) átnevezése"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Adatbázis újratöltése"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Adatbázis másolása"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Karakterkészlet változtatása"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "A táblázatnak legalább egy oszlopot kell tartalmaznia."
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Tábla létrehozása"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Felhasználandó táblák"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Keresés"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Keresési kritériumok elrejtése"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "Keresési kritériumok mutatása"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Tartalom"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "%s törlése"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "SQL-lekérdezési panelek elrejtése"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "SQL-lekérdezési panelek mutatása"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Inline szerkesztés"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1222,41 +1264,41 @@ msgstr "Módosítás"
msgid "Save"
msgstr "Mentés"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Elrejtés"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Keresési kritériumok elrejtése"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Keresési kritériumok mutatása"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Kihagyás"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Válassza ki a hivatkozott kulcsot"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Idegen kulcs kiválasztása"
-#: js/messages.php:131
+#: js/messages.php:144
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:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Válassza ki a megjelenítendő oszlopot"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1264,27 +1306,27 @@ 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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Adjon meg egy opciót az oszlophoz"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Jelszó generálása"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generálás"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Jelszó megváltoztatása"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Több"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1294,258 +1336,258 @@ msgstr ""
"%s, kiadás dátuma: %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", utolsó stabil verzió:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "friss"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Kész"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Előző"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Következő"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Ma"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Január"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Február"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Március"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Április"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Május"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Június"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Július"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Augusztus"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Szeptember"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Október"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "November"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "jan."
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "febr."
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "márc."
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "ápr."
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "máj."
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "jún."
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "júl."
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "aug."
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "szept."
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "okt."
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "nov."
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "dec."
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Vasárnap"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Hétfő"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Kedd"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Szerda"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Csütörtök"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Péntek"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Szombat"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "V"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "H"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "K"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Cs"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Szo"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "V"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "H"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "K"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Sze"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Cs"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Szo"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Hét"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Óra"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Perc"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "másodperc"
@@ -1640,7 +1682,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Adatbázisok"
@@ -1711,25 +1753,25 @@ msgstr "%s letiltott ezen a MySQL szerveren."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Érvénytelen adatbázis"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Érvénytelen táblanév"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "A(z) %s tábla átnevezése %s névre megtörtént"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1761,10 +1803,9 @@ msgstr "Nem található a(z) %s téma!"
msgid "Theme path not found for theme %s!"
msgstr "Nem található a(z) %s téma téma elérési útja!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Téma / Séma"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1772,7 +1813,6 @@ msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Üdvözli a %s"
@@ -1925,7 +1965,7 @@ msgstr "megosztott"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Táblák"
@@ -2010,7 +2050,6 @@ msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállítások
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Szerver"
@@ -2058,7 +2097,7 @@ msgid "Documentation"
msgstr "Dokumentáció"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-lekérdezés"
@@ -2066,119 +2105,119 @@ msgstr "SQL-lekérdezés"
msgid "MySQL said: "
msgstr "A MySQL mondta: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Az SQL magyarázata"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL magyarázat átugrása"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP kód nélkül"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Frissítés"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL érvényesítés átugrása"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL érvényesítése"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "lekérdezés inline szerkesztése"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Belső"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Adatgyűjtés"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bájt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y. %B %d. %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s nap, %s óra, %s perc, %s másodperc"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "A tetejére"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Előző"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Vége"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Ugrás a(z) "%s" adatbázishoz."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2190,41 +2229,41 @@ msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s"
msgid "Structure"
msgstr "Szerkezet"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Beszúrás"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Műveletek"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Számítógép tallózása:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Válasszon a szerver feltöltési könyvtárából %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Nem elérhető a feltöltésekhez megadott könyvtár"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Nincsenek feltöltendő fájlok"
@@ -2589,7 +2628,7 @@ msgstr "Alapértelmezett tábla fül"
msgid "Show binary contents as HEX by default"
msgstr "Bináris tartalom megjelenítése HEX-ként, mint alapértelmezett"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Bináris tartalom megjelenítése HEX-ként"
@@ -4656,7 +4695,7 @@ msgstr "Tervező"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Jogok"
@@ -4668,7 +4707,7 @@ msgstr "Eljárások"
msgid "Return type"
msgstr "Típus visszaadása"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4788,7 +4827,7 @@ msgstr "Sorok:"
#: libraries/display_export.lib.php:157
msgid "Dump some row(s)"
-msgstr ""
+msgstr "Néhány sor dumpolása"
#: libraries/display_export.lib.php:159
msgid "Number of rows:"
@@ -4800,7 +4839,7 @@ msgstr "Ettől a sortól kezdve:"
#: libraries/display_export.lib.php:173
msgid "Dump all rows"
-msgstr ""
+msgstr "Összes sor dumpolása"
#: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202
msgid "Output:"
@@ -4859,9 +4898,9 @@ msgstr "A fájl karakterkészlete:"
msgid "Compression:"
msgstr "Tömörítés:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Nincs"
@@ -5000,39 +5039,59 @@ msgstr ""
msgid "Language"
msgstr "Nyelv"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "Szövegterület oszlopai"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Kattintson a kijelöléshez."
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "A(z) %d érvénytelen sorszám."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "sor a következő számú rekordtól kezdődően:"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "vízszintesen"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "vízszintesen (elforgatott fejlécek)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "függőlegesen"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s és a fejlécek megismétlése %s cella után"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Kulcs szerinti rendezés"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5045,101 +5104,101 @@ msgstr "Kulcs szerinti rendezés"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Beállítások"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Részleges szövegek"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Teljes szövegek"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relációs kulcs"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relációs megjelenítési mező"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Bináris tartalom megjelenítése"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "BLOB-tartalom megjelenítése"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Böngésző átalakítása"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "A sor törlése megtörtént"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Leállít"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "lekérdezésben"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Megjelenített sorok:"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "összesen"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "a lekérdezés %01.4f másodpercig tartott"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Módosítás"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Műveletek a lekérdezési eredménnyel"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Nyomtatási nézet (teljes szöveggel)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF séma megjelenítése"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Kapcsolat létrehozása"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Nem található a hivatkozás"
@@ -5187,7 +5246,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Pufferkészlet"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB állapota"
@@ -5710,7 +5769,7 @@ msgstr "Létező MIME-típusok"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Hoszt"
@@ -5920,7 +5979,7 @@ msgstr "SQL-eredmény"
msgid "Generated by"
msgstr "Készítette"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6083,7 +6142,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Nincs változás"
@@ -6416,14 +6475,14 @@ msgid "Slave status"
msgstr "Másodlagos állapot"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Változó"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Érték"
@@ -6665,20 +6724,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Bináris napló"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Változók"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Karakterkészlet"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motorok"
@@ -6727,11 +6786,11 @@ msgstr "Törlés"
msgid "Columns"
msgstr "Oszlopnevek"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
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:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
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 "
@@ -6974,7 +7033,7 @@ msgstr "PARTITION definíció"
msgid "+ Add a new value"
msgstr "Új szerver hozzáadása"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Idő"
@@ -7226,7 +7285,7 @@ msgid "Protocol version"
msgstr "Protokoll verzió"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Felhasználó"
@@ -7522,7 +7581,7 @@ msgstr "Létrehozás"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Kezelő"
@@ -7724,17 +7783,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:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Fájlok"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "A megjelenített lekérdezések lerövidítése"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Teljes lekérdezések megjelenítése"
@@ -8272,7 +8331,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Kisegítő állapot megjelenítése"
@@ -8414,12 +8473,34 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Frissítés"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Perc"
+msgstr[1] "Perc"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "másodperc"
+msgstr[1] "másodperc"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Sikerült leállítani a(z) %s. szálat."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8427,178 +8508,145 @@ 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Kezelő"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Lekérdezési gyorsítótár"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Szálak"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Ideiglenes adatok"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Késleltetett beszúrások"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Kulcs gyorsítótár"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Illesztések"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Rendezés"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Tranzakció koordinátor"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Összes tábla kiírása (bezárása)"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Nyitott táblák megjelenítése"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Kisegítő állomások megjelenítése"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Kisegítő állapot megjelenítése"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Lekérdezési gyorsítótár kiírása"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Futtatási információk"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Szerver választása"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Lekérdezések statisztikája"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Frissítés"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "másodperc"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "másodperc"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Perc"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nincs jelszó megváltoztatás"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Nyitott táblák megjelenítése"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Kapcsolatok"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "óránként"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "percenként"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "másodpercenként"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Lekérdezés típusa"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -8606,21 +8654,21 @@ msgstr ""
#| "href=\"#replication\">replication section."
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Ez a MySQL-szerver mint %s működik a többszörözéses folyamatban. A "
"szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Többszörözéses állapot"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Forgalom"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8628,45 +8676,41 @@ msgstr ""
"Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által "
"jelentett statisztikák pontatlanok lehetnek."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Fogadott"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Küldött"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Kapcsolatok"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Max. egyidejű kapcsolatok száma"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Sikertelen próbák"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Megszakítva"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Folyamatok"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "AZ"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8676,17 +8720,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8698,11 +8742,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8710,7 +8754,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:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8718,7 +8762,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:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8726,23 +8770,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "A beírt INSERT DELAYED sorok száma."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "A végrehajtott FLUSH utasítások száma."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "A belső COMMIT utasítások száma."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8752,7 +8796,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:854
+#: server_status.php:863
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, "
@@ -8763,7 +8807,7 @@ msgstr ""
"például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül "
"indexelésre."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8771,7 +8815,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:856
+#: server_status.php:865
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 "
@@ -8781,7 +8825,7 @@ msgstr ""
"ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot "
"végez."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8789,7 +8833,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:858
+#: server_status.php:867
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 "
@@ -8801,7 +8845,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:859
+#: server_status.php:868
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 "
@@ -8813,35 +8857,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "A belső ROLLBACK utasítások száma."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "A jelenleg piszkos lapok száma."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "A szabad lapok száma."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8851,7 +8895,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:868
+#: server_status.php:877
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 "
@@ -8864,11 +8908,11 @@ msgstr ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is "
"számolható."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "A pufferkészlet teljes mérete lapokban."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8877,7 +8921,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8885,11 +8929,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:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8897,7 +8941,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:874
+#: server_status.php:883
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 "
@@ -8912,53 +8956,53 @@ msgstr ""
"méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell "
"lennie."
-#: server_status.php:875
+#: server_status.php:884
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:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Az fsync() műveletek eddigi száma."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "A folyamatban lévő fsync() műveletek száma."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "A folyamatban lévő olvasások száma."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "A folyamatban lévő írások száma."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Az eddig beolvasott adatok mennyisége bájtban."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Az összes beolvasott adat."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Az összes írott adat."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Az összes írott adat, bájtban."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8966,35 +9010,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "A naplóírási kérések száma."
-#: server_status.php:888
+#: server_status.php:897
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:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "A folyamatban lévő naplófájl fsync-ek száma."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "A folyamatban lévő naplófájl írások száma."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "A naplófájlba írt bájtok száma."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "A létrehozott lapok száma."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9003,51 +9047,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "A beolvasott lapok száma."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Az írott lapok száma."
-#: server_status.php:897
+#: server_status.php:906
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:898
+#: server_status.php:907
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:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "A sorzárolásokra fordított összes idő, milliszekundumban."
-#: server_status.php:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
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:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Az InnoDB táblákba beszúrt sorok száma."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Az InnoDB táblákból beolvasott sorok száma."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Az InnoDB táblákban frissített sorok száma."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9055,7 +9099,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:907
+#: server_status.php:916
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."
@@ -9063,7 +9107,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:908
+#: server_status.php:917
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 "
@@ -9072,11 +9116,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9087,15 +9131,15 @@ msgstr ""
"sikertelen találatainak aránya a Key_reads/Key_read_requests alapján "
"számítható ki."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9106,17 +9150,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9124,40 +9168,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "A megnyitott fájlok száma."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "A megnyitott táblák száma."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
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:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "A gyorsítótár találatok száma."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "A gyorsítótárhoz adott lekérdezések száma."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9170,7 +9214,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9178,19 +9222,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "A gyorsítótárban bejegyzett lekérdezések száma."
-#: server_status.php:927
+#: server_status.php:936
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:928
+#: server_status.php:937
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:929
+#: server_status.php:938
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."
@@ -9198,11 +9242,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9211,7 +9255,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9219,15 +9263,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9235,11 +9279,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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9247,14 +9291,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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9264,23 +9308,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "A tartományokkal végzett rendezések száma."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Rendezett sorok száma."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9292,7 +9336,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:945
+#: server_status.php:954
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 "
@@ -9302,11 +9346,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "A jelenleg megnyitott kapcsolatok száma."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9317,7 +9361,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "A nem alvó szálak száma."
@@ -9442,7 +9486,7 @@ msgstr "Szerver változók és beállítások"
msgid "Session value"
msgstr "Munkamenet értéke"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globális változó"
@@ -9827,39 +9871,39 @@ msgstr ""
"A kulcs alfanumerikus karaktereket, betűket [em]és[/em] speciális "
"karaktereket tartalmazzon"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Az idegen kulcsok böngészése"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "A beszúrt sor azonosítószáma: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Megjelenítés PHP kódként"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Megjelenítés SQL lekérdezésként"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Érvényes SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probléma a(z) `%s` tábla indexeivel"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Név"
@@ -10244,24 +10288,24 @@ msgstr "Idegen kulcs korlátozása"
msgid "No rows selected"
msgstr "Nem jelölte ki a sort"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Válasszon oszlopokat (legalább egyet):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Sorok száma oldalanként"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Megjelenítési sorrend:"
@@ -10539,6 +10583,12 @@ msgstr "NÉZET neve"
msgid "Rename view to"
msgstr "Nézet átnevezése"
+#~ msgid "Theme / Style"
+#~ msgstr "Téma / Séma"
+
+#~ msgid "seconds"
+#~ msgstr "másodperc"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "lekérdezések futási idejének összehasonlítása (mikromásodpercekben)"
@@ -10564,8 +10614,6 @@ msgstr "Nézet átnevezése"
#~ msgid "Show processes"
#~ msgstr "Folyamatok megjelenítése"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Törlés"
@@ -10587,10 +10635,6 @@ msgstr "Nézet átnevezése"
#~ msgid "Chart generated successfully."
#~ msgstr "A grafikon generálása sikeres."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
diff --git a/po/id.po b/po/id.po
index 23c3db06b0..0949045f4d 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Tampilkan semua"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate "
"dengan cara Cross-Window"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Cari"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Cari"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Nama Kunci"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Deskripsi"
@@ -137,7 +137,7 @@ msgstr "Komentar tabel"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolom"
@@ -150,7 +150,7 @@ msgstr "Kolom"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Jenis"
@@ -166,7 +166,7 @@ msgstr "Jenis"
msgid "Null"
msgstr "Kosong"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Link ke"
msgid "Comments"
msgstr "Komentar"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Komentar"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Tidak"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Tampilkan dump (skema) dari database"
msgid "No tables found in database."
msgstr "Tidak ada tabel dalam database."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Pilih semua"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Unselect semua"
@@ -271,7 +271,7 @@ msgstr "Database %s telah disalin ke %s"
msgid "Rename database to"
msgstr "Ubah nama database menjadi"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Perintah"
@@ -332,7 +332,7 @@ msgstr "Pindah ke database yang disalin"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Edit atau ekspor skema relasional"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabel"
@@ -373,7 +373,7 @@ msgstr "Baris"
msgid "Size"
msgstr "Ukuran"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "sedang digunakan"
@@ -399,7 +399,7 @@ msgstr "Update terakhir"
msgid "Last check"
msgstr "Pemeriksaan terakhir"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +418,25 @@ msgid "visual builder"
msgstr "pembangun visual"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Urutkan"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Urutan menaik"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Urutan menurun"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Tampilkan"
@@ -459,7 +459,7 @@ msgstr "Hapus"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Atau"
@@ -488,57 +488,57 @@ msgstr "Gunakan Tabel"
msgid "SQL query on database %s :"
msgstr "Pencarian SQL dalam database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Jalankan Pencarian SQL"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Akses ditolak"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "sekurang-kurangnya salah satu kata"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "seluruh kata"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "kata-kata tepat"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "sebagai regular expression"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Hasil pencarian untuk \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s cocok dalam tabel %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Browse"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
-msgstr "Hapus yang cocok untuk% s tabel?"
+msgstr "Hapus yang cocok untuk %s tabel?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -549,64 +549,64 @@ msgstr "Hapus yang cocok untuk% s tabel?"
msgid "Delete"
msgstr "Hapus"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Total: %s cocok"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Cari dalam database"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Kata atau nilai untuk dicari (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Cari:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Kata dipisahkan oleh karakter spasi (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Cari dalam tabel:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Di dalam kolom:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Tidak ada tabel dalam database."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s telah dikosongkan"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Pandangan %s telah dibubarkan"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s telah dihapus"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Pelacakan aktif"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Pelacakan tidak aktif."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -615,110 +615,110 @@ msgstr ""
"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat "
"%sdokumentasi%s"
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Gambarkan"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Tiruan"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Jumlah"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s adalah mesin penyimpan utama pada server MySQL ini."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "yang ditandai:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Pilih semua"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Balik pilihan"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Periksa Overheaded"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspor"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Pandangan cetak"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Mengosongkan"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Hapus"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Periksa tabel"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimasikan tabel"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Perbaiki tabel"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analisa tabel"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Ganti data tabel dengan file"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Ganti data tabel dengan file"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Kamus Data"
@@ -733,9 +733,9 @@ msgstr "Tabel-tabel yang dilacak"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Database"
@@ -751,8 +751,8 @@ msgstr "Dibuat"
msgid "Updated"
msgstr "Diperbarui"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -895,7 +895,7 @@ msgstr "Penyimpanan telah dihapus."
msgid "Showing bookmark"
msgstr "Tampilkan bookmark"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark % s dibuat"
@@ -923,7 +923,7 @@ msgstr ""
"waktu eksekusi php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -951,15 +951,15 @@ msgstr "Klik untuk memilih"
msgid "Click to unselect"
msgstr "Klik untuk batal memilih"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Perintah \"HAPUS DATABASE\" dimatikan."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Apakah anda ingin "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Anda akan MENGHAPUS SELURUH database!"
@@ -1056,165 +1056,206 @@ msgstr "Hapus pengguna yang dipilih"
msgid "Close"
msgstr "Tutup"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Pilihan Server"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "Pencarian SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Jumlah"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Memproses"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Memproses permintaan"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Error dalam memproses permintaan"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Menghapus Kolom"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr " Tambahkan Primary Key"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Ubah nama database"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Muat ulang basis data"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Salin database"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Perangkat karakter (Charset)"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Tabel harus mengandung sekurangnya satu kolom"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Buat tabel"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Gunakan Tabel"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Pencarian"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Sembunyikan kriteria pencarian"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Tampilkan kriteria pencarian"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Browse"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Menghapus %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Sembunyikan kotak query"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Tampilkan kotak query"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Inline Edit"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Pilihan Server"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "Pencarian SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Jumlah"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Pilihan Server"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Proses Aktif"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Koneksi"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "Pencarian SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statistik query"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Memproses"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Memproses permintaan"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Error dalam memproses permintaan"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Menghapus Kolom"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr " Tambahkan Primary Key"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Ubah nama database"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Muat ulang basis data"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Salin database"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Perangkat karakter (Charset)"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabel harus mengandung sekurangnya satu kolom"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Buat tabel"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Gunakan Tabel"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Pencarian"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Sembunyikan kriteria pencarian"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "Tampilkan kriteria pencarian"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Browse"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Menghapus %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Sembunyikan kotak query"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Tampilkan kotak query"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Inline Edit"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1222,67 +1263,67 @@ msgstr "Ubah"
msgid "Save"
msgstr "Simpan"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Sembunyikan"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Sembunyikan kriteria pencarian"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Tampilkan kriteria pencarian"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Abaikan"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Pilih kunci rujukan"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Pilih Foreign Key"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Silakan pilih primary key atau sebuah unique key"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pilih kolom untuk ditampilkan"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Tambahkan pilihan untuk kolom"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Menghasilkan kata sandi"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Menghasilkan"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Ubah Kata Sandi"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Selebihnya"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1292,260 +1333,260 @@ msgstr ""
"untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", versi stabil terakhir:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Beralih ke database"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Selesai"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Sebelumnya"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Berikutnya"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Hari ini"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Januari"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Februari"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Maret"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "April"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mei"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Juni"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Juli"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Agustus"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "September"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Oktober"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "November"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Januari"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Februari"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Maret"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "April"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Agustus"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "September"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nopember"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Desember"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Minggu"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Senin"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Selasa"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Rabu"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Kamis"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Jumat"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Sabtu"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Minggu"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Senin"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Selasa"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Rabu"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Kamis"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Jumat"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sabtu"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Minggu"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Senin"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Selasa"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Rabu"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Kamis"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Jumat"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Sabtu"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Mingguan"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Jam"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Menit"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Detik"
@@ -1640,7 +1681,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Basisdata"
@@ -1713,25 +1754,25 @@ msgstr "%s dimatikan untuk server MySQL ini."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Server MySQL ini tidak mendukung mesin penyimpan %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Basisdata tidak valid"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Nama tabel tidak valid"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Kesalahan mengganti nama table %1$s ke %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Nama tabel %s telah diubah menjadi %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1763,10 +1804,9 @@ msgstr "Tema %s tidak ditemukan!"
msgid "Theme path not found for theme %s!"
msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Tampilan"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1774,7 +1814,6 @@ msgstr "Koneksi gagal: setelan tidak berlaku."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
@@ -1927,7 +1966,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabel"
@@ -2011,7 +2050,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2059,7 +2097,7 @@ msgid "Documentation"
msgstr "Dokumentasi"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Pencarian SQL"
@@ -2067,119 +2105,119 @@ msgstr "Pencarian SQL"
msgid "MySQL said: "
msgstr "MySQL menyatakan: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Gagal melakukan koneksi ke validator SQL!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Terangkan SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Melewati keterangan SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Kode PHP tidak ditemukan"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Ciptakan kode PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Menyegarkan"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Melewati pengesahan (validation) SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Mengesahkan (validate) SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Inline edit untuk query ini"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profiling"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y jam %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s menit dan %s detik"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Awal"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Sebelumnya"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Terakhir"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Lompat langsung ke database "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2191,41 +2229,41 @@ msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s"
msgid "Structure"
msgstr "Struktur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Sisipkan"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operasi"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Telusuri komputer Anda:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Pilih dari direktori unggah %s pada web server:"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Tidak ada arsip untuk diunggah"
@@ -2400,7 +2438,7 @@ msgstr "Reset"
#: libraries/config/messages.inc.php:17
msgid "Improves efficiency of screen refresh"
-msgstr ""
+msgstr "Meningkatkan efisiensi refresh layar"
#: libraries/config/messages.inc.php:18
msgid "Enable Ajax"
@@ -2423,6 +2461,9 @@ msgid ""
"inside a frame, and is a potential [strong]security hole[/strong] allowing "
"cross-frame scripting attacks"
msgstr ""
+"Mengaktifkan ini memungkinkan halaman yang terletak pada domain yang berbeda "
+"untuk memanggil phpMyAdmin di dalam frame, dan merupakan [strong]lubang "
+"keamanan[/strong] potensial yang memungkinkan serangan scripting lintas-frame"
#: libraries/config/messages.inc.php:22
msgid "Allow third party framing"
@@ -2572,7 +2613,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4551,7 +4592,7 @@ msgstr "Perancang"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Hak Akses"
@@ -4563,7 +4604,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4773,9 +4814,9 @@ msgstr "Penyusunan karakter dalam file:"
msgid "Compression:"
msgstr "Kompresi"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "tanpa"
@@ -4910,39 +4951,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete columns"
+msgid "Restore column order"
+msgstr "Tambahkan/Hapus kolom"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Klik untuk memilih"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d bukanlah nomor baris yang berlaku."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "baris dimulai dari rekord #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horisontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horisontal (rotated headers)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikal"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "diatur dengan urutan %s dan mengulang header setelah %s sel."
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Urut berdasarkan kunci"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4955,104 +5016,104 @@ msgstr "Urut berdasarkan kunci"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Operasi"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Teks yang disingkat"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Teks Penuh"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Skema Relational"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Skema Relational"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformasi Browser"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Baris telah dihapus"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Tutup"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "dalam susunan pemeriksaan"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Tampilan baris"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "pencarian membutuhkan waktu %01.4f detik"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ubah"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Pandangan cetak (dengan teks lengkap)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Tampilkan skema PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Membuat versi"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link tidak ditemukan"
@@ -5099,7 +5160,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Penampungan Buffer"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Status dari InnoDB"
@@ -5587,7 +5648,7 @@ msgstr "Tipe MIME yang tersedia"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5799,7 +5860,7 @@ msgstr "Hasil SQL"
msgid "Generated by"
msgstr "Diciptakan oleh"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -5963,7 +6024,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Tidak ada perubahan"
@@ -6292,14 +6353,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Nilai"
@@ -6539,20 +6600,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Log binari"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variabel"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Penyusunan Karakter"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Mesin"
@@ -6600,11 +6661,11 @@ msgstr "Kalender"
msgid "Columns"
msgstr "Nama kolom"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Simpan pencarian SQL ini"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
@@ -6844,7 +6905,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Menambahkan pengguna baru"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Jangka Waktu"
@@ -7071,7 +7132,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Pengguna"
@@ -7353,7 +7414,7 @@ msgstr "Ciptakan"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7545,18 +7606,18 @@ msgstr "Tabel \"%s\" tidak ditemukan!"
msgid "Select binary log to view"
msgstr "Pilih Log binari untuk ditinjau"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Field"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Potongkan pencarian yang ditampilkan"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Tampilkan pencarian yang lengkap"
@@ -8100,7 +8161,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8239,12 +8300,32 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Menyegarkan"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Menit"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Detik"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Sukses hentikan Thread %s."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8252,257 +8333,220 @@ msgstr ""
"phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah "
"ditutup terlebih dahulu"
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Tipe Pencarian"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Gunakan perintah INSERT memperlambat"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Koordinator transaksi"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Tampilkan tabel"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informasi Runtime"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Pilihan Server"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Statistik query"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Menyegarkan"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Detik"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Detik"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Menit"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Jangan ubah Kata Sandi"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Tampilkan tabel"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Tabel Relasi"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "dalam sejam"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per menit"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per detik"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tipe Pencarian"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
"MySQL server ini telah berjalan secara berturut-turut selama %s. Server "
"dijalankan pada tanggal %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Lalu-Lintas"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Penerimaan"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Pengiriman"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Koneksi"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Gagal"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Pembatalan"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Proses Aktif"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8510,78 +8554,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8589,7 +8633,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8597,42 +8641,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8640,33 +8684,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8675,227 +8719,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8903,99 +8947,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9003,18 +9047,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9022,7 +9066,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9145,7 +9189,7 @@ msgstr "Variabel dan penyetelan server"
msgid "Session value"
msgstr "Nilai dari Session"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Nilai Global"
@@ -9423,41 +9467,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Menjelajahi nilai luar"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Mengesahkan (validate) SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Judul"
@@ -9845,25 +9889,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Tidak ada baris yang dipilih"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "cari berdasarkan data contoh (\"query by example\") (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Pilihan field (min. satu):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Menambahkan kriteria pencarian (Argumen untuk WHERE-Statement):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Jumlah baris per halaman"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Urut tampilan berdasarkan:"
@@ -10059,11 +10103,11 @@ msgstr ""
#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
-msgstr ""
+msgstr "Pilihan ini akan mengganti table dan data isi table"
#: tbl_tracking.php:560
msgid "SQL execution"
-msgstr ""
+msgstr "Menjalankan SQL"
#: tbl_tracking.php:572
#, php-format
@@ -10072,7 +10116,7 @@ msgstr "Ekspor sebagai %s"
#: tbl_tracking.php:612
msgid "Show versions"
-msgstr ""
+msgstr "Tunjukkan Versi"
#: tbl_tracking.php:644
msgid "Version"
@@ -10124,7 +10168,7 @@ msgstr ""
#: themes.php:41
msgid "Get more themes!"
-msgstr ""
+msgstr "Dapatkan tema lainnya"
#: transformation_overview.php:24
msgid "Available MIME types"
@@ -10164,6 +10208,12 @@ msgstr "Nama VIEW"
msgid "Rename view to"
msgstr "Ubah nama tabel menjadi "
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Tampilan"
+
+#~ msgid "seconds"
+#~ msgstr "Detik"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Perbandingan waktu eksekusi query (dalam mikrodetik)"
@@ -10179,7 +10229,6 @@ msgstr "Ubah nama tabel menjadi "
#~ msgid "JSON encoder is needed for chart tooltips."
#~ msgstr "JSON encoder diperlukan untuk tooltips pada diagram."
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Reset"
@@ -10187,8 +10236,6 @@ msgstr "Ubah nama tabel menjadi "
#~ msgid "Show processes"
#~ msgstr "Tampilkan Proses"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Reset"
@@ -10207,15 +10254,9 @@ msgstr "Ubah nama tabel menjadi "
#~ "Informasi statistik : Sejak dihidupkan, %s pencarian telah dikirim "
#~ "kepada server."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Sukses reload Hak Istimewa (Privileges)."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -10223,8 +10264,6 @@ msgstr "Ubah nama tabel menjadi "
#~ "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
#~ "html#faq3_11@Dokumentasi]FAQ 3.11[/a]"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Tipe Pencarian"
diff --git a/po/it.po b/po/it.po
index e7fac68cfe..67f95eb257 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-05-25 22:43+0200\n"
"Last-Translator: Rouslan Placella \n"
"Language-Team: italian \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Mostra tutti"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di "
"sicurezza."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Cerca"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Cerca"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Chiave"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Descrizione"
@@ -138,7 +138,7 @@ msgstr "Commenti alla tabella"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Campo"
@@ -151,7 +151,7 @@ msgstr "Campo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -167,7 +167,7 @@ msgstr "Tipo"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Collegamenti a"
msgid "Comments"
msgstr "Commenti"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "Commenti"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "No"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "Visualizza dump (schema) del database"
msgid "No tables found in database."
msgstr "Non ci sono tabelle nel database."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Seleziona tutto"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Deseleziona tutto"
@@ -272,7 +272,7 @@ msgstr "Il database %s è stato copiato a %s"
msgid "Rename database to"
msgstr "Rinomina il database a"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Comando"
@@ -333,7 +333,7 @@ msgstr "Passa al database copiato"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -358,7 +358,7 @@ msgstr "Modifica o esporta schema relazionale"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabella"
@@ -374,7 +374,7 @@ msgstr "Righe"
msgid "Size"
msgstr "Dimensione"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in uso"
@@ -400,7 +400,7 @@ msgstr "Ultimo cambiamento"
msgid "Last check"
msgstr "Ultimo controllo"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -420,25 +420,25 @@ msgid "visual builder"
msgstr "creazione query assistita"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Ordinamento"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Crescente"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Decrescente"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostra"
@@ -461,7 +461,7 @@ msgstr "Elimina"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Oppure"
@@ -490,58 +490,58 @@ msgstr "Utilizza tabelle"
msgid "SQL query on database %s :"
msgstr "SQL-query sul database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Invia Query"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Accesso negato"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "almeno una delle parole"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "tutte le parole"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "la frase esatta"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "come espressione regolare"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Cerca i risultati per \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s corrispondenza nella tabella %s "
msgstr[1] "%s corrispondenze nella tabella %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Mostra"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Eliminare le corrispondenze relative alla tabella %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -552,65 +552,65 @@ msgstr "Eliminare le corrispondenze relative alla tabella %s?"
msgid "Delete"
msgstr "Elimina"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Totale: %s corrispondenza"
msgstr[1] "Totale: %s corrispondenze"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Cerca nel database"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Parola/e o valore/i da cercare (carattere jolly: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Trova:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Le parole sono separate da spazi (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Nella/e tabella/e:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "All'interno della colonna:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Non ci sono tabelle nel database"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "La tabella %s è stata svuotata"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "La vista %s è stata eliminata"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "La tabella %s è stata eliminata"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Il tracking è attivo."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Il tracking non è attivo."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -619,106 +619,106 @@ msgstr ""
"Questa vista ha, come minimo, questo numero di righe. Per informazioni "
"controlla la %sdocumentazione%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vista"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replicazione"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Totali"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Se selezionati:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Seleziona tutti"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Deseleziona tutti"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Controllo addizionale"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Esporta"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Visualizza per stampa"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Svuota"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Controlla tabella"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Ottimizza tabella"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Ripara tabella"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizza tabella"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Aggiungi prefisso alla tabella"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Sostituisci il prefisso della tabella"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Copia tabella col prefisso"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Dictionary"
@@ -733,9 +733,9 @@ msgstr "Tabelle monitorate"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Database"
@@ -751,8 +751,8 @@ msgstr "Creato"
msgid "Updated"
msgstr "Aggiornato"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Stato"
@@ -901,7 +901,7 @@ msgstr "Il bookmark è stato cancellato."
msgid "Showing bookmark"
msgstr "Visualizzazione segnalibri"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Segnalibro %s creato"
@@ -929,7 +929,7 @@ msgstr ""
"basso per consentire a phpMyAdmin di terminare l'operazione."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -955,15 +955,15 @@ msgstr "Clicca per selezionare"
msgid "Click to unselect"
msgstr "Clicca per deselezionare"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "I comandi \"DROP DATABASE\" sono disabilitati."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Vuoi veramente "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero database!"
@@ -1056,160 +1056,202 @@ msgstr "Rimozione Utenti Selezionati"
msgid "Close"
msgstr "Chiudi"
-#: js/messages.php:64 server_status.php:393
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
+#: setup/frames/index.inc.php:137
+msgid "Edit"
+msgstr "Modifica"
+
+#: js/messages.php:66 server_status.php:416
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Scelta del server"
-#: js/messages.php:65 server_status.php:396
+#: js/messages.php:67 server_status.php:419
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:66 server_status.php:423
+#: js/messages.php:68 server_status.php:438
#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
msgstr "Mostra il diagramma della query"
-#: js/messages.php:68
+#: js/messages.php:70
msgid "Static data"
msgstr ""
#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
#: tbl_structure.php:790
msgid "Total"
msgstr "Totale"
#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
+#: js/messages.php:74 server_status.php:595
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
+#: js/messages.php:76 libraries/common.lib.php:1375
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
+#: js/messages.php:78 libraries/common.lib.php:1377
msgid "."
msgstr "."
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Scelta del server"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processi"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Connessioni"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Query SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statistiche query"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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 "Annulla"
-#: js/messages.php:83
+#: js/messages.php:96
msgid "Loading"
msgstr "Caricamento"
-#: js/messages.php:84
+#: js/messages.php:97
msgid "Processing Request"
msgstr "Elaborazione Richiesta"
-#: js/messages.php:85 libraries/import/ods.php:80
+#: js/messages.php:98 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Errore nel processare la richiesta"
-#: js/messages.php:86
+#: js/messages.php:99
msgid "Dropping Column"
msgstr "Eliminazione colonna"
-#: js/messages.php:87
+#: js/messages.php:100
msgid "Adding Primary Key"
msgstr "Creazione chiave primaria"
-#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:101 libraries/relation.lib.php:87 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:91
+#: js/messages.php:104
msgid "Renaming Databases"
msgstr "Rinominazione dei Database"
-#: js/messages.php:92
+#: js/messages.php:105
msgid "Reload Database"
msgstr "Ricarica Database"
-#: js/messages.php:93
+#: js/messages.php:106
msgid "Copying Database"
msgstr "Sto copiando il Database"
-#: js/messages.php:94
+#: js/messages.php:107
msgid "Changing Charset"
msgstr "Sto cambiando il charset"
-#: js/messages.php:95
+#: js/messages.php:108
msgid "Table must have at least one column"
msgstr "La tabella deve avere come minimo una colonna"
-#: js/messages.php:96
+#: js/messages.php:109
msgid "Create Table"
msgstr "Crea tabella"
-#: js/messages.php:101
+#: js/messages.php:114
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "Utilizza tabelle"
-#: js/messages.php:104
+#: js/messages.php:117
msgid "Searching"
msgstr "Ricerca in corso"
-#: js/messages.php:105
+#: js/messages.php:118
msgid "Hide search results"
msgstr "Nascondi i risultati della ricerca"
-#: js/messages.php:106
+#: js/messages.php:119
msgid "Show search results"
msgstr "Mostra i risultati della ricerca"
-#: js/messages.php:107
+#: js/messages.php:120
msgid "Browsing"
msgstr "Navigazione"
-#: js/messages.php:108
+#: js/messages.php:121
msgid "Deleting"
msgstr "Cancellazione"
-#: js/messages.php:111
+#: js/messages.php:124
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
"Nota: Se il file contiene piú di una tabella, i dati saranno combinati in un "
"unica tabella"
-#: js/messages.php:114
+#: js/messages.php:127
msgid "Hide query box"
msgstr "Nascondi riquadro query SQL"
-#: js/messages.php:115
+#: js/messages.php:128
msgid "Show query box"
msgstr "Mostra riquadro query SQL"
-#: js/messages.php:116
+#: js/messages.php:129
msgid "Inline Edit"
msgstr "Modifica in linea"
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
-#: setup/frames/index.inc.php:137
-msgid "Edit"
-msgstr "Modifica"
-
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1217,41 +1259,41 @@ msgstr "Modifica"
msgid "Save"
msgstr "Salva"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Nascondi"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Nascondi criteri di ricerca"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Mostra criteri di ricerca"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Seleziona le chiavi referenziali"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Seleziona Foreign Key"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Seleziona la chiave primaria o una chiave univoca"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Scegli la colonna da mostrare"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1259,27 +1301,27 @@ msgstr ""
"Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno "
"persi se non li salvi. Vuoi procedere?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Aggiungi un'opzione alla colonna "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Genera password"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Cambia password"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Più"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1289,258 +1331,258 @@ msgstr ""
"l'aggiornamento. La versione più recente è la %s, rilasciata il %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", versione stabile piú recente:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "aggiornata"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Fatto"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Precedente"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Prossimo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Oggi"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Gennaio"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Febbraio"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Marzo"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Aprile"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Maggio"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Giugno"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Luglio"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Agosto"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Setttembre"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Ottobre"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Novembre"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Dicembre"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Mag"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Giu"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Lug"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Ott"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Domenica"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Lunedì"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Martedì"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Mercoledì"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Giovedì"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Venerdì"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Sabato"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Gi"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Sett"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Ora"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Secondo"
@@ -1634,7 +1676,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Database"
@@ -1673,10 +1715,8 @@ msgid "Could not save recent table"
msgstr "Impossibile salvare la configurazione"
#: libraries/RecentTable.class.php:148
-#, fuzzy
-#| msgid "Count tables"
msgid "Recent tables"
-msgstr "Conta tabbelle"
+msgstr "Conta tabelle"
#: libraries/RecentTable.class.php:154
#, fuzzy
@@ -1706,25 +1746,25 @@ msgstr "%s è stato disabilitato su questo server MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Questo server MySQL non supporta il motore di memorizzazione %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Database non valido"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Nome tabella non valido"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Errore nel rinominare la tabella %1$s in %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "La tabella %s è stata rinominata %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1757,10 +1797,9 @@ msgstr "Tema %s non trovato!"
msgid "Theme path not found for theme %s!"
msgstr "Percorso per il tema non trovato %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Stile"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1768,7 +1807,6 @@ msgstr "Impossibile connettersi: impostazioni non valide."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Benvenuto in %s"
@@ -1922,7 +1960,7 @@ msgstr "condiviso"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabelle"
@@ -2007,7 +2045,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2055,7 +2092,7 @@ msgid "Documentation"
msgstr "Documentazione"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Query SQL"
@@ -2063,119 +2100,119 @@ msgstr "Query SQL"
msgid "MySQL said: "
msgstr "Messaggio di MySQL: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Non sono riuscito a connettermi all'SQL Validator!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Spiega SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Non Spiegare SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Senza codice PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Crea il codice PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Aggiorna"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Non Validare SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Valida SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Modifica inline di questa query"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profiling"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y alle %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s giorni, %s ore, %s minuti e %s secondi"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Inizio"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Precedente"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Fine"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Passa al database "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La %s funzionalità è affetta da un bug noto, vedi %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2187,41 +2224,41 @@ msgstr "La %s funzionalità è affetta da un bug noto, vedi %s"
msgid "Structure"
msgstr "Struttura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Inserisci"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operazioni"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Cerca sul tuo computer:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Selezionare dalla cartella di upload del server web %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "La directory impostata per l'upload non può essere trovata"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Nessun file da caricare"
@@ -2587,7 +2624,7 @@ msgstr "Tabulazione predefinita per le tabbelle"
msgid "Show binary contents as HEX by default"
msgstr "Mostra sempre contenuti binari come esadecimali"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Mostra contenuti binari come esadecimali"
@@ -4682,7 +4719,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegi"
@@ -4694,7 +4731,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Tipo di risultato"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4881,9 +4918,9 @@ msgstr "Set di caratteri del file:"
msgid "Compression:"
msgstr "Compressione:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Nessuno"
@@ -5017,37 +5054,57 @@ msgstr "Opzioni specifisce al formato:"
msgid "Language"
msgstr "Lingua"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "Campi di aree di testo"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Clicca per selezionare"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d non è un numero valido di righe."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "righe a partire da #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "orizzontale"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "orizzontale (headers ruotati)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "verticale"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "in modalità %s e ripeti gli headers dopo %s celle"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Ordina per chiave"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5060,92 +5117,92 @@ msgstr "Ordina per chiave"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opzioni"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Testi parziali"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Testi completi"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Chiave relazionale"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Campo di visualizzazione relazionale"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Mostra contenuti binari"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Mostra contenuti BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Trasformazione del browser"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Copia"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "La riga è stata cancellata"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Rimuovi"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "nella query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Mostrando i righi"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "totale"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "La query ha impiegato %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Modifica"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operazioni sui risultati della query"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Vista stampa (con full text)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Mostra diagramma"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Crea vista"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link non trovato"
@@ -5193,7 +5250,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Stato InnoDB"
@@ -5705,7 +5762,7 @@ msgstr "Mostra tipi MIME"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5930,7 +5987,7 @@ msgstr "Risultato SQL"
msgid "Generated by"
msgstr "Generato da"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)."
@@ -6093,7 +6150,7 @@ msgstr "Aggiungi un prefisso alla tabella"
msgid "Add prefix"
msgstr "Aggiungi prefisso"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Nessun cambiamento"
@@ -6427,14 +6484,14 @@ msgid "Slave status"
msgstr "Stato slave"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variabile"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valore"
@@ -6662,20 +6719,20 @@ msgid "Synchronize"
msgstr "Sincronizza"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Log binario"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variabili"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Set di caratteri"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motori"
@@ -6720,11 +6777,11 @@ msgstr "Cancella"
msgid "Columns"
msgstr "Campi"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Aggiungi ai preferiti questa query SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Permetti ad ogni utente di accedere a questo bookmark"
@@ -6952,7 +7009,7 @@ msgstr "Definizione PARTITION"
msgid "+ Add a new value"
msgstr "+ Aggiungi un nuovo valore"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tempo"
@@ -7156,7 +7213,7 @@ msgid "Protocol version"
msgstr "Versione protocollo"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Utente"
@@ -7430,7 +7487,7 @@ msgstr "Globale"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operatore"
@@ -7609,17 +7666,17 @@ msgstr "Il file non esiste"
msgid "Select binary log to view"
msgstr "Selezionare il log binario da visualizzare"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "File"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Tronca le Query Mostrate"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Mostra query complete"
@@ -8151,7 +8208,7 @@ msgid "This server is configured as master in a replication process."
msgstr ""
"Questo server é configurato come master in un processo di replicazione."
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Mostra lo stato del master"
@@ -8300,12 +8357,34 @@ msgstr ""
"Questo server non é configurato come slave in un processo di replicazione. "
"Vorresti configurarlo ora ?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Aggiorna"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minuto"
+msgstr[1] "Minuto"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Secondo"
+msgstr[1] "Secondo"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Il thread %s è stato terminato con successo."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8313,166 +8392,133 @@ msgstr ""
"phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già "
"stato terminato."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Handler"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Cache delle query"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Processi"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Dati temporanei"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Inserimento ritardato"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Joins"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Ordinando"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Coordinatore delle transazioni"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Rinfresca (chiudi) tutte le tabelle"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Mostra le tabelle aperte"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Mostra gli hosts slave"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Mostra lo stato degli slave"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Rinfresca la cache delle query"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informazioni di Runtime"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Scelta del server"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Statistiche query"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Vedi la tabella di stato dello slave"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Aggiorna"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Secondo"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Secondo"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuto"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Non cambiare la password"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Mostra le tabelle aperte"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Collegamenti Associati"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "all'ora"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "al minuto"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "al secondo"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tipo di query"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Questo server MySQL sta girando da %s. É stato avviato il %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8480,35 +8526,36 @@ msgstr ""
"Questo server MySQL funziona come un master e slave nel "
"processo di replicazione ."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"Questo server MySQL funziona come un master nel processo di "
"replicazione ."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Questo server MySQL funziona come un slave nel processo di "
"replicazione ."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Per ulteriori informazioni a riguardo lo stato di replicazione su questo "
-"server, prego vedi la seztione sulla replicazione ."
+"server, prego vedi la seztione sulla replicazione"
+"a>."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Stato di replicazione"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Traffico"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8517,45 +8564,41 @@ msgstr ""
"e per questa ragione le statistiche riportate dal server MySQL potrebbero "
"non essere corrette."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Ricevuti"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Spediti"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Connessioni"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. connessioni contemporanee"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Tentativi falliti"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Fallito"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processi"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Impossibile effettuare la connessione al server MySQL"
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8565,17 +8608,17 @@ msgstr ""
"ma che oltrepassano il valore di binlog_cache_size e usano un file "
"temporaneo per salvare gli statements dalle transazioni."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Il numero delle transazioni che usano la cache temporanea del log binario."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8587,11 +8630,11 @@ msgstr ""
"grande, potresti voler aumentare il valore tmp_table_size, per fare im modo "
"che le tabelle temporanee siano memory-based anzichè disk-based."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Numero di file temporanei che mysqld ha creato."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8599,7 +8642,7 @@ msgstr ""
"Il numero di tabelle temporanee create automaticamente in memoria dal server "
"durante l'esecuzione dei comandi."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8607,7 +8650,7 @@ msgstr ""
"Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori "
"(probabilmete chiave dublicata)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8615,23 +8658,23 @@ msgstr ""
"Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato "
"INSERT DELAYED occupa un thread."
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Il numero di righe INSERT DELAYED scritte."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Il numero di comandi FLUSH eseguiti."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Il numero di comandi interni COMMIT eseguiti."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8641,7 +8684,7 @@ msgstr ""
"tabella sulla base di un nome dato. Questo è chaiamto discovery. "
"Handler_discover indica il numero di volte che una tabella è stata trovata."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8652,7 +8695,7 @@ msgstr ""
"degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia "
"indicizzata."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8661,7 +8704,7 @@ msgstr ""
"alta, è un buon indice che le tue query e le tue tabelle sono correttamente "
"indicizzate."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8672,7 +8715,7 @@ msgstr ""
"colonna indice con un range costante, oppure se stai facendo una scansione "
"degli indici."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8681,7 +8724,7 @@ msgstr ""
"chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare "
"ORDER BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8694,7 +8737,7 @@ msgstr ""
"MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le "
"chiavi correttamente."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8707,37 +8750,37 @@ msgstr ""
"indicizzate, o che le query non sono state scritte per trarre vantaggi dagli "
"indici che hai."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Il numero di comandi ROLLBACK interni."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Il numero di richieste per aggiornare una riga in una tabella."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Il numero di richieste per inserire una riga in una tabella."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Il numero di pagine che contengono dati (sporchi o puliti)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Il numero di pagine attualmente sporche."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Il numero di buffer pool pages che hanno avuto richiesta di essere "
"aggiornate."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Il numero di pagine libere."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8747,7 +8790,7 @@ msgstr ""
"attualmente in lettura o in scittura e non possono essere aggiornate o "
"rimosse per altre ragioni."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8759,11 +8802,11 @@ msgstr ""
"come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Il numero totale di buffer pool, in pagine."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8771,7 +8814,7 @@ msgstr ""
"Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando "
"una query legge una porzione di una tabella, ma in ordine casuale."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8779,11 +8822,11 @@ msgstr ""
"Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB "
"esegue una scansione completa sequenziale di una tabella."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Il numero di richieste logiche che InnoDb ha fatto."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8791,7 +8834,7 @@ msgstr ""
"Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool "
"e che devono fare una lettura di una pagina singola."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8806,55 +8849,55 @@ msgstr ""
"dimesione del buffer pool è stata settata correttamente questo valore "
"dovrebbe essere basso."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Il numero di scritture effettuate nel buffer pool InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Il numero delle operazioni fsync() fino ad ora."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Il numero di operazioni fsync() in attesa."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Il numero di letture in attesa."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Il numero di scritture in attesa."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "La quantità di dati letti fino ad ora, in bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Il numero totale di dati letti."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Il numero totale di dati scritti."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "La quantità di dati scritti fino ad ora, in bytes."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Il numero di scritture doublewrite che sono state eseguite ed il numero che "
"sono state scritte a questo scopo."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Il numero di scritture doublewrite che sono state eseguite ed il numero che "
"sono state scritte a questo scopo."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8862,35 +8905,35 @@ msgstr ""
"Il numero di attese che abbiamo avuto perchè il buffer di log era troppo "
"piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Il numero di richieste di scrittura dei log."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Il numero scritture fisiche del log file."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Il numero di scritture effettuate da fsync() sul log file."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Il numero degli fsyncs in sospeso sul log file."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Il numero di scritture in sospeso sul log file."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Il numero di bytes scritti sul log file."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Il numero di pagine create."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8899,51 +8942,51 @@ msgstr ""
"valori sono conteggiati nelle pagine; la dimesione delle pagine permette di "
"convertirli facilmente in bytes."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Il numero di pagine lette."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Il numero di pagine scritte."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Il numero di row locks attualmente in attesa."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Il numero di volte che un row lock ha dovuto attendere."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Il numero di righe cancellate da una tabella InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Il numero di righe inserite da una tabella InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Il numero di righe lette da una tabella InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Il numero di righe aggiornate da una tabella InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8952,7 +8995,7 @@ msgstr ""
"cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome "
"di Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8960,7 +9003,7 @@ msgstr ""
"Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore "
"per determinare quanta cache chiave è in uso."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -8970,11 +9013,11 @@ msgstr ""
"segnale che indica il numero massimo di blocchi che sono stati in uso "
"contemporaneamente."
-#: server_status.php:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache."
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -8985,15 +9028,15 @@ msgstr ""
"rapporto di cache miss rate può essere calcolato come Key_reads/"
"Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "Il numero di richieste per scrivere una blocco chiave nella cache."
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Il numero di scritture fisiche di un blocco chiave sul disco."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -9004,18 +9047,18 @@ msgstr ""
"query per la stessa operazione di query. Il valore di default è 0, che "
"significa che nessuna query è stata ancora compilata."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"In numero di righe in attesa di essere scritte nella coda INSERT DELAYED."
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9023,39 +9066,39 @@ msgstr ""
"Il numero di tabelle che sono state aperte. Se il valore opened_tables è "
"grande, probabilmente il valore di table cache è troppo piccolo."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Il numero di file che sono aperti."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Il numero di stream che sono aperti (usato principalmente per il logging)."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Il numero di tabelle che sono aperte."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "L'ammontare di memoria libera nella cache delle query."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Il numero di cache hits."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Il numero di query aggiunte alla cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9068,7 +9111,7 @@ msgstr ""
"una strategia di \"meno usate recentemente\" (LRU - least recently used) per "
"decidere quali query rimuovere dalla cache."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9076,19 +9119,19 @@ msgstr ""
"Il numero di query non in cache (impossibilità di inserirle nella cache "
"oppure non inserite per i settaggi del parametro query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Il numero di query registrate nella cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Il numero totale di blocchi nella cache delle query."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Lo sato delle repliche failsafe (non ancora implementato)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9096,13 +9139,13 @@ msgstr ""
"Il numero di joins che non usano gli indici. Se questo valore non è 0, "
"dovresti controllare attentamente gli indici delle tue tabelle."
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Il numero di joins che usano una ricerca limitata su di una tabella di "
"riferimento."
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -9111,7 +9154,7 @@ msgstr ""
"ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli "
"indici delle tue tabelle.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9119,17 +9162,17 @@ msgstr ""
"Il numero di joins che usano un range sulla prima tabella. (Non è, "
"solitamente, un valore critico anche se è grande.)"
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
"Il numero di join che hanno effettuato una scansione completa della prima "
"tabella."
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave."
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9137,12 +9180,12 @@ msgstr ""
"Numero totale di volte (dalla partenza) in cui la replica slave SQL ha "
"ritentato una transazione."
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Questa chiave è ON se questo è un server slave connesso ad un server master."
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9150,12 +9193,12 @@ msgstr ""
"Numero di processi che hanno impiegato più di slow_launch_time secondi per "
"partire."
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Numero di query che hanno impiegato più di long_query_time secondi."
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -9165,23 +9208,23 @@ msgstr ""
"fatte. Se questo valore è grande, dovresti incrementare la variabile di "
"sistema sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Il numero di righe ordinate."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Il numero di volte che un table lock è stato eseguito immediatamente."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9193,7 +9236,7 @@ msgstr ""
"performance, dovresti prima ottimizzare le query, oppure sia utilizzare le "
"repliche, sia dividere le tabelle."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9203,11 +9246,11 @@ msgstr ""
"essere calcolato come processi_creati/connessioni. Se questo valore è rosso "
"devi aumentare la tua thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Il numero di connessioni correntemente aperte."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9219,7 +9262,7 @@ msgstr ""
"(Normalmente questo non fornisce un significatico incremento delle "
"performace se hai una buona implementazione dei processi.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Il numero di processi non in attesa."
@@ -9346,7 +9389,7 @@ msgstr "Variabili e impostazioni del server"
msgid "Session value"
msgstr "Valore sessione"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valore globale"
@@ -9677,39 +9720,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"La chiave deve contenere lettere, numeri [em]e[/em] caratteri speciali."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Naviga tra i valori esterni"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Inserita riga id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Mostrando il codice PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Mostrando la query SQL"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "SQL Validato"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi con gli indici della tabella `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etichetta"
@@ -10090,23 +10133,23 @@ msgstr "Vincolo della chiave esterna"
msgid "No rows selected"
msgstr "Nessuna riga selezionata"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Seleziona campi (almeno uno):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Numero di righi per pagina"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Ordine di visualizzazione:"
@@ -10239,16 +10282,13 @@ msgid "Tracking data definition successfully deleted"
msgstr "Le definizioni dei dati di monitoraggio eliminati con successo"
#: tbl_tracking.php:384 tbl_tracking.php:401
-#, fuzzy
-#| msgid "Gather errors"
msgid "Query error"
-msgstr "Errore della query"
+msgstr "Errore nella query"
#: tbl_tracking.php:399
-#, fuzzy
-#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation successfully deleted"
-msgstr "Le manipolazioni dei dati di monitoraggio eliminati con successo"
+msgstr ""
+"Le manipolazioni dei dati di monitoraggio sono stati cancellati con successo"
#: tbl_tracking.php:411
msgid "Tracking statements"
@@ -10394,6 +10434,12 @@ msgstr "Nome VISTA"
msgid "Rename view to"
msgstr "Rinomina la vista in"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Stile"
+
+#~ msgid "seconds"
+#~ msgstr "Secondo"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Rapporto tempo esecuzione query (in microsecondi)"
diff --git a/po/ja.po b/po/ja.po
index 4918c1c0e9..682baa4b17 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-08 12:19+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-17 12:46+0200\n"
"Last-Translator: Yuichiro \n"
"Language-Team: japanese \n"
"Language: ja\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "すべて表示"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも"
"のと思われます"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "検索"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "検索"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "キー名"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "説明"
@@ -137,7 +137,7 @@ msgstr "テーブルのコメント"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "カラム"
@@ -150,7 +150,7 @@ msgstr "カラム"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "種別"
@@ -166,7 +166,7 @@ msgstr "種別"
msgid "Null"
msgstr "NULL"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "リンク先"
msgid "Comments"
msgstr "コメント"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "コメント"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "いいえ"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "いいえ"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "DB のダンプ(スキーマ)表示"
msgid "No tables found in database."
msgstr "このデータベースにはテーブルがありません"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "全選択"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "全選択解除"
@@ -271,7 +271,7 @@ msgstr "データベース %s を %s にコピーしました"
msgid "Rename database to"
msgstr "新しいデータベース名"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "コマンド"
@@ -332,7 +332,7 @@ msgstr "コピーしたデータベースに切り替える"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "テーブル"
@@ -373,7 +373,7 @@ msgstr "行"
msgid "Size"
msgstr "サイズ"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "使用中"
@@ -399,7 +399,7 @@ msgstr "最終更新"
msgid "Last check"
msgstr "最終検査"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +418,25 @@ msgid "visual builder"
msgstr "Visual query builder"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "ソート"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "昇順"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "降順"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "表示"
@@ -459,7 +459,7 @@ msgstr "削除"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "または"
@@ -488,57 +488,57 @@ msgstr "利用するテーブル"
msgid "SQL query on database %s :"
msgstr "データベース %s のSQL:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "クエリを実行する"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "アクセスは拒否されました"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "いずれかの単語を含む"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "すべての単語を含む"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "完全一致"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "正規表現"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"%s \" の検索結果 %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s 件(テーブル %s )"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "表示"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "テーブル %s に対して条件に一致したものを削除しますか?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -549,170 +549,170 @@ msgstr "テーブル %s に対して条件に一致したものを削除しま
msgid "Delete"
msgstr "削除"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "合計: %s 件"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "データベース内検索"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "検索する単語や値 (ワイルドカード: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "検索条件:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "各単語は空白文字(\" \")で区切ってください"
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "検索するテーブル:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "検索するカラム:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "このデータベースにはテーブルがありません"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "テーブル %s を空にしました"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "ビュー %s を破棄しました"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "テーブル %s を削除しました"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "SQL コマンドの追跡はアクティブです。"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "SQL コマンドの追跡は非アクティブです。"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "ビュー"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "レプリケーション"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "合計"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです"
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "チェックしたものを:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "すべてチェックする"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "すべてのチェックを外す"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "オーバーヘッドのあるテーブルを確認する"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "エクスポート"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "印刷用画面"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "空にする"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "削除"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "テーブルをチェックする"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "テーブルを最適化する"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "テーブルを修復する"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "テーブルを分析する"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "接頭辞をテーブル名に追加する"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "テーブル名の接頭辞を付け替える"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "接頭辞を付け替えてテーブルをコピーする"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "データ辞書"
@@ -727,9 +727,9 @@ msgstr "SQL コマンドを追跡しているテーブル"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "データベース"
@@ -745,8 +745,8 @@ msgstr "作成日時"
msgid "Updated"
msgstr "更新日時"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "状態"
@@ -893,7 +893,7 @@ msgstr "ブックマークを削除しました"
msgid "Showing bookmark"
msgstr "表示中のブックマーク"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "ブックマーク %s を作成しました"
@@ -920,7 +920,7 @@ msgstr ""
"PHP の時間制限を伸ばさない限りこのデータのインポートはできません"
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -946,15 +946,15 @@ msgstr "クリックで選択"
msgid "Click to unselect"
msgstr "クリックで選択解除"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "DROP DATABASE 文は無効にされています"
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "本当に実行しますか?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "データベースを完全に削除しようとしています!"
@@ -1046,158 +1046,194 @@ msgstr "選択したユーザを削除する"
msgid "Close"
msgstr "閉じる"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
+#: setup/frames/index.inc.php:137
+msgid "Edit"
+msgstr "編集"
+
+#: js/messages.php:66 server_status.php:416
msgid "Live traffic chart"
-msgstr "サーバの選択"
+msgstr "リアルタイムでのトラフィックグラフ"
-#: js/messages.php:65 server_status.php:396
+#: js/messages.php:67 server_status.php:419
msgid "Live conn./process chart"
-msgstr ""
+msgstr "リアルタイムでの接続/プロセスグラフ"
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
+#: js/messages.php:68 server_status.php:438
msgid "Live query chart"
-msgstr "クエリをグラフで表示"
+msgstr "リアルタイムでのクエリグラフ"
-#: js/messages.php:68
+#: js/messages.php:70
msgid "Static data"
-msgstr ""
+msgstr "統計データ"
#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
#: tbl_structure.php:790
msgid "Total"
msgstr "合計"
#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
+#: js/messages.php:74 server_status.php:595
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
+#: js/messages.php:76 libraries/common.lib.php:1375
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
+#: js/messages.php:78 libraries/common.lib.php:1377
msgid "."
msgstr "."
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic (in kB)"
+msgid "Server traffic (in KiB)"
+msgstr "サーバのトラフィック(単位:kB)"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "プロセス"
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr "接続/プロセス"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL クエリ"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "クエリの統計"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:83
+#: js/messages.php:96
msgid "Loading"
msgstr "読み込み中"
-#: js/messages.php:84
+#: js/messages.php:97
msgid "Processing Request"
msgstr "要求を処理中"
-#: js/messages.php:85 libraries/import/ods.php:80
+#: js/messages.php:98 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "要求処理中でのエラー"
-#: js/messages.php:86
+#: js/messages.php:99
msgid "Dropping Column"
msgstr "カラムを削除中"
-#: js/messages.php:87
+#: js/messages.php:100
msgid "Adding Primary Key"
msgstr "主キーの追加中"
-#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:101 libraries/relation.lib.php:87 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:91
+#: js/messages.php:104
msgid "Renaming Databases"
msgstr "データベースのリネーム中"
-#: js/messages.php:92
+#: js/messages.php:105
msgid "Reload Database"
msgstr "データベースの再読み込み中"
-#: js/messages.php:93
+#: js/messages.php:106
msgid "Copying Database"
msgstr "データベースをコピー中"
-#: js/messages.php:94
+#: js/messages.php:107
msgid "Changing Charset"
msgstr "文字セットの変更中"
-#: js/messages.php:95
+#: js/messages.php:108
msgid "Table must have at least one column"
msgstr "テーブルには最低ひとつのカラムが必要です"
-#: js/messages.php:96
+#: js/messages.php:109
msgid "Create Table"
msgstr "テーブルを作成"
-#: js/messages.php:101
+#: js/messages.php:114
msgid "Insert Table"
msgstr "テーブルを挿入する"
-#: js/messages.php:104
+#: js/messages.php:117
msgid "Searching"
msgstr "検索中"
-#: js/messages.php:105
+#: js/messages.php:118
msgid "Hide search results"
msgstr "検索結果を隠す"
-#: js/messages.php:106
+#: js/messages.php:119
msgid "Show search results"
msgstr "検索結果を表示する"
-#: js/messages.php:107
+#: js/messages.php:120
msgid "Browsing"
msgstr "表示中"
-#: js/messages.php:108
+#: js/messages.php:121
msgid "Deleting"
msgstr "削除中"
-#: js/messages.php:111
+#: js/messages.php:124
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
"注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま"
"す。"
-#: js/messages.php:114
+#: js/messages.php:127
msgid "Hide query box"
msgstr "クエリボックスを隠す"
-#: js/messages.php:115
+#: js/messages.php:128
msgid "Show query box"
msgstr "クエリボックスを表示"
-#: js/messages.php:116
+#: js/messages.php:129
msgid "Inline Edit"
msgstr "インライン編集"
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
-#: setup/frames/index.inc.php:137
-msgid "Edit"
-msgstr "編集"
-
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1205,41 +1241,41 @@ msgstr "編集"
msgid "Save"
msgstr "保存する"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "隠す"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "検索条件を隠す"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "検索条件を表示する"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "無視"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "参照されているキーを選択"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "外部キーを選択してください"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "主キーまたはユニークキーを選択してください"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "表示するカラムの選択"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1247,27 +1283,27 @@ msgstr ""
"レイアウトの変更を保存されていません。保存していない場合、それらは失われま"
"す。このまま続けてもよろしいですか?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "カラムに対するオプションを追加する"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "パスワードを生成する"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "生成する"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "パスワードを変更する"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "その他"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1277,258 +1313,258 @@ msgstr ""
"します。最新バージョンは %s で、%s にリリースされています。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", 最終安定バージョン:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "最新版"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "決定"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "前へ"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "次へ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "今日"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "1 月"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "2 月"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "3 月"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "4 月"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "5 月"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "6 月"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "7 月"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "8 月"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "9 月"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "10 月"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "11 月"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "12 月"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "1 月"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "2 月"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "3 月"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "4 月"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "5 月"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "6 月"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "12 月"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "日"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "月"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "火"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "水"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "木"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "金"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "土"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "土"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "月"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "火"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "水"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "木"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "金"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "土"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "週"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "時"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "分"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "秒"
@@ -1624,7 +1660,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "データベース"
@@ -1685,25 +1721,25 @@ msgstr "%s は無効になっています"
msgid "This MySQL server does not support the %s storage engine."
msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません"
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "不正なデータベースです"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "テーブル名が不正です"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "テーブル %s を %s にリネームしました"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "テーブルにユーザ設定が保存できません"
@@ -1735,10 +1771,9 @@ msgstr "テーマ %s が見つかりません!"
msgid "Theme path not found for theme %s!"
msgstr "テーマ %s のテーマパスが見つかりません!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "テーマ / スタイル"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1746,7 +1781,6 @@ msgstr "接続できません: 設定が無効です"
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s へようこそ"
@@ -1897,7 +1931,7 @@ msgstr "共有"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "テーブル"
@@ -1979,7 +2013,6 @@ msgstr "サーバ %1$s のホスト名が不正です。設定を確認してく
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "サーバ"
@@ -2027,7 +2060,7 @@ msgid "Documentation"
msgstr "ドキュメント"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "実行した SQL"
@@ -2035,119 +2068,119 @@ msgstr "実行した SQL"
msgid "MySQL said: "
msgstr "MySQLのメッセージ: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "SQL 検証への接続に失敗しました!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "EXPLAIN で確認"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL の EXPLAIN 解析をスキップ"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP コードを省略"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP コードの作成"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "再描画"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL の検証をスキップ"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL の検証"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "このクエリをインライン編集する"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "インライン"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "プロファイリング"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "バイト"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %B %d 日 %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 日 %s 時間 %s 分 %s 秒"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "先頭"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
-msgstr "前"
+msgstr "前へ"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "最後"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" データベースに移動"
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s の機能には既知のバグがあります。%s をご覧ください"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2159,41 +2192,41 @@ msgstr "%s の機能には既知のバグがあります。%s をご覧くださ
msgid "Structure"
msgstr "構造"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "挿入"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "操作"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "アップロードファイル:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "指定したアップロードディレクトリが利用できません"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "アップロードファイルがありません"
@@ -2552,7 +2585,7 @@ msgstr "デフォルトのテーブルタブ"
msgid "Show binary contents as HEX by default"
msgstr "デフォルトではバイナリの内容を 16 進数で表示します。"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "バイナリの内容を 16 進数で表示する"
@@ -3054,8 +3087,8 @@ msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
-"データベースで行われた変更の追跡機能です。これには、 phpMyAdmin の設定保存場"
-"所が必要です。"
+"データベースで行われた変更の追跡機能です。これには、phpMyAdmin の設定保存場所"
+"が必要です。"
#: libraries/config/messages.inc.php:208
msgid "Customize export options"
@@ -3336,7 +3369,7 @@ msgstr "ロゴリンクのターゲット"
#: libraries/config/messages.inc.php:286
msgid "Highlight server under the mouse cursor"
-msgstr "マウスカーソルの下のサーバー名を強調表示します。"
+msgstr "マウスカーソルの下のサーバ名を強調表示します。"
#: libraries/config/messages.inc.php:287
msgid "Enable highlighting"
@@ -3457,8 +3490,8 @@ msgid ""
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-"結果セットの表示行数。結果セットの行数の方が多い場合は「前(Previous)/次"
-"(Next)」のリンクが表示されます。"
+"結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンク"
+"が表示されます。"
#: libraries/config/messages.inc.php:311
msgid "Maximum number of rows to display"
@@ -3526,7 +3559,7 @@ msgstr "HTTP 転送の高速化のために GZip の出力バッファリング
#: libraries/config/messages.inc.php:326
msgid "GZip output buffering"
-msgstr "GZipの出力バッファリング"
+msgstr "GZip の出力バッファリング"
#: libraries/config/messages.inc.php:327
msgid ""
@@ -4087,12 +4120,12 @@ msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_config[/kbd]"
msgstr ""
-"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_config[/"
+"データベースにユーザ環境設定を保存しない場合は空欄にします。[kbd]pma_config[/"
"kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:441
msgid "User preferences storage table"
-msgstr "ユーザ設定保存テーブル"
+msgstr "ユーザ環境設定保存テーブル"
#: libraries/config/messages.inc.php:443
msgid "User for config auth"
@@ -4579,7 +4612,7 @@ msgstr "デザイナ"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "特権"
@@ -4591,7 +4624,7 @@ msgstr "ルーチン"
msgid "Return type"
msgstr "返り値の種類"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4776,9 +4809,9 @@ msgstr "ファイルの文字セット:"
msgid "Compression:"
msgstr "圧縮:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "なし"
@@ -4910,37 +4943,57 @@ msgstr "フォーマット特有のオプション:"
msgid "Language"
msgstr "言語"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "textarea の 1 行の文字数"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "クリックで選択"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d は不正な行番号です"
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "開始レコード"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "水平"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
-msgstr "水平 (ヘッダも回転)"
+msgstr "水平 (縦ヘッダ)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "垂直"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "モード: %s (%s セルごとにヘッダを表示)"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "キーでソート"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4953,92 +5006,92 @@ msgstr "キーでソート"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "オプション"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "部分テキスト"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "全文"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "リレーションキー"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "リレーション表示カラム"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "バイナリの内容を表示する"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "BLOB の内容を表示する"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "ブラウザ変換機能"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "コピー"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "行を削除しました"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "停止"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "行/クエリ"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "行の表示"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "合計"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "クエリの実行時間 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "変更"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "クエリ結果操作"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "印刷用画面 (全テキストを含む)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "グラフで表示する"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
-msgstr "ビューを作成"
+msgstr "ビューを作成する"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "リンク先が見つかりません"
@@ -5086,7 +5139,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "バッファプール"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB ステータス"
@@ -5583,7 +5636,7 @@ msgstr "MIME タイプの表示"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "ホスト"
@@ -5797,7 +5850,7 @@ msgstr "SQL の結果"
msgid "Generated by"
msgstr "生成環境"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "返り値が空でした(行数0)"
@@ -5958,7 +6011,7 @@ msgstr "テーブル接頭辞の追加"
msgid "Add prefix"
msgstr "追加する接頭辞"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "変更なし"
@@ -6198,7 +6251,7 @@ msgstr "PDF の作成"
#: libraries/relation.lib.php:121
msgid "Displaying Column Comments"
-msgstr "列コメント表示機能"
+msgstr "カラムコメント表示機能"
#: libraries/relation.lib.php:126
msgid ""
@@ -6223,7 +6276,7 @@ msgstr "永続的な『テーブルのユーザ設定』"
#: libraries/relation.lib.php:155
msgid "User preferences"
-msgstr "ユーザ設定"
+msgstr "ユーザ環境設定"
#: libraries/relation.lib.php:159
msgid "Quick steps to setup advanced features:"
@@ -6267,7 +6320,7 @@ msgid ""
"Make sure, you have unique server-id in your configuration file (my.cnf). If "
"not, please add the following line into [mysqld] section:"
msgstr ""
-"念のため、設定ファイル (my.cnf) 内でサーバーIDがユニークであるか確認してくだ"
+"念のため、設定ファイル (my.cnf) 内でサーバ ID がユニークであるか確認してくだ"
"さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。"
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
@@ -6287,14 +6340,14 @@ msgid "Slave status"
msgstr "スレーブステータス"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "変数"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "値"
@@ -6522,20 +6575,20 @@ msgid "Synchronize"
msgstr "同期"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "バイナリログ"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "変数"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "文字セット"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "エンジン"
@@ -6580,11 +6633,11 @@ msgstr "クリア"
msgid "Columns"
msgstr "カラム"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "この SQL をブックマークする"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "すべてのユーザがこのブックマークを利用できるようにする"
@@ -6807,7 +6860,7 @@ msgstr "パーティションの定義"
msgid "+ Add a new value"
msgstr "+ 新しい値を追加する"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "時間"
@@ -7002,7 +7055,7 @@ msgid "Protocol version"
msgstr "プロトコルバージョン"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "ユーザ"
@@ -7272,7 +7325,7 @@ msgstr "集計"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "演算子"
@@ -7454,17 +7507,17 @@ msgstr "ファイルが存在しません"
msgid "Select binary log to view"
msgstr "表示するバイナリログを選択してください"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "ファイル"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "クエリの表示を切り詰める"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "クエリ全体を表示"
@@ -7980,7 +8033,7 @@ msgstr "マスタサーバを %s へ切り替えるのに成功しました。"
msgid "This server is configured as master in a replication process."
msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。"
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "マスタステータスの表示"
@@ -8009,7 +8062,7 @@ msgid ""
"ignore all databases by default and allow only certain databases to be "
"replicated. Please select the mode:"
msgstr ""
-"このサーバは、レプリケーションプロセスのマスタサーバーとして構成されていませ"
+"このサーバは、レプリケーションプロセスのマスタサーバとして構成されていませ"
"ん。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全"
"てのデータベースをレプリケーションするモード(データベースの大部分をレプリ"
"ケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベース"
@@ -8043,8 +8096,8 @@ msgid ""
"master"
msgstr ""
"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その"
-"後、このサーバーが マスタとして設定されていることを知らせるメッセージが"
-"表示されます。"
+"後、このサーバが マスタとして設定されていることを知らせるメッセージが表"
+"示されます。"
#: server_replication.php:291
msgid "Slave SQL Thread not running!"
@@ -8132,177 +8185,154 @@ msgstr ""
"このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定 を行いますか?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "再描画間隔"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "minutes"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "%d 分"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "%d 秒"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "スレッド %s は正常終了しました"
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです"
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "ハンドラ"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "クエリキャッシュ"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "スレッド"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "一時データ"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "遅延インサート"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "キーキャッシュ"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "結合"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "ソート中"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "トランザクションコーディネータ"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "すべてのテーブルをフラッシュする(閉じる)"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "開いているテーブルを表示する"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "スレーブホストを表示する"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "スレーブの状態を表示する"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "クエリキャッシュをフラッシュする"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "ランタイム情報"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "サーバの選択"
+msgstr "サーバのトラフィック"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "クエリの統計"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "スレーブのステータステーブルを閲覧する"
+msgstr "全ての状態変数"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "再描画"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "秒"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "秒"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "分"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "パスワードは変更しない"
+msgstr "含まれている文字:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "開いているテーブルを表示する"
+msgstr "警告値のみ表示する"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "種別によるフィルタ..."
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "関連リンク"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "/時"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "/分"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "/秒"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "クエリ種別"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "クエリ数"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "起動以後のネットワークトラフィック:%s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)"
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8310,35 +8340,35 @@ msgstr ""
"この MySQL サーバは、レプリケーション プロセスのマスタ とス"
"レーブ として動作しています。"
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"この MySQL サーバは、レプリケーション プロセスのマスタ として動作"
"しています。"
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"この MySQL サーバは、レプリケーション プロセスのスレーブ として動"
"作しています。"
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-"サーバー上のレプリケーションステータスの詳細については、レプリケーションの節 を参照してください。"
+"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節 を参照してください。"
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "レプリケーションステータス"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "トラフィック"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8346,45 +8376,39 @@ msgstr ""
"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ"
"が報告してくる統計は不正確なことがあります"
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "受信済"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "送信済"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "接続"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "最大同時接続数"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "失敗回数"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "中断"
-#: server_status.php:778
-msgid "Processes"
-msgstr "プロセス"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Whether to enable SSL for connection to MySQL server."
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "MySQL サーバに接続するのに SSL を有効にするかどうか。"
+msgstr "MySQL サーバへの接続を試みて失敗した回数。"
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8393,16 +8417,16 @@ msgstr ""
"一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた"
"め一時ファイルにステートメントを保存したトランザクション数"
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "一時バイナリログキャッシュを使用したトランザクション数"
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "MySQL サーバへの接続試行回数(成否に関わらず)。"
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8413,24 +8437,24 @@ msgstr ""
"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ"
"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。"
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "mysqld が生成した一時ファイル数"
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数"
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
"何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数"
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8438,23 +8462,23 @@ msgstr ""
"使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ"
"ルの数だけ固有のスレッドが用意されます"
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED で書き込まれた行数"
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "FLUSH 文の実行回数"
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "内部で COMMIT 文を実行した回数"
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "テーブルから行を削除した回数"
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8464,7 +8488,7 @@ msgstr ""
"ての情報を持っているか問い合わせることができます。これを開示と言いますが、"
"Handler_discover はその開示されたタイムテーブルの数です"
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8474,7 +8498,7 @@ msgstr ""
"もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT "
"col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)"
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8482,7 +8506,7 @@ msgstr ""
"キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ"
"ルが適切にインデックスされているものと考えられます"
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8491,7 +8515,7 @@ msgstr ""
"キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク"
"エリに範囲指定をしているか、インデックススキャンを行っているときに増加します"
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8499,7 +8523,7 @@ msgstr ""
"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER "
"BY ... DESC の最適化に利用されます"
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8511,7 +8535,7 @@ msgstr ""
"キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に"
"不適切なところがあります"
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8522,36 +8546,36 @@ msgstr ""
"キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適"
"切か、クエリがインデックスを利用するように書かれていないことを意味します"
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "内部で ROLLBACK 文を実行した回数"
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "テーブル内の行を更新したリクエストの数"
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "テーブル内に行を挿入したリクエストの数"
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)"
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "現在のダーティページの数"
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "フラッシュリクエストを受けたバッファプールのページ数"
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "空きページ数"
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8561,7 +8585,7 @@ msgstr ""
"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し"
"たりできなくなっているページの数です"
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8573,11 +8597,11 @@ msgstr ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計"
"算できます"
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "ページのバッファプールサイズの合計"
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8585,7 +8609,7 @@ msgstr ""
"InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン"
"ダムな順番でスキャンするときに発生します"
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8593,11 +8617,11 @@ msgstr ""
"InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル"
"なフルテーブルスキャンを行うときに発生します"
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB が実行した論理読み込みリクエストの数"
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8605,7 +8629,7 @@ msgstr ""
"InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ"
"ばならなかった論理読み込みの回数"
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8619,51 +8643,51 @@ msgstr ""
"そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され"
"ていれば、この値は小さいはずです"
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB バッファプールへの書き込み回数"
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "これまでに fsync() を実行した回数"
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "現在保留されている fsync() の回数"
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "現在保留されている読み込みの数"
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "現在保留されている書き込みの数"
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "これまでのデータ読み込み量 (単位:バイト)"
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "データ読み込み回数の合計"
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "データ書き込み回数の合計"
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "これまでのデータの書き込み量 (単位:バイト)"
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数"
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8671,35 +8695,35 @@ msgstr ""
"ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生"
"したウェイトの回数"
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "ログ書き込みリクエストの数"
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "ログファイルへの物理書き込みの回数"
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "ログファイルへの fsync 書き込みの回数"
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "保留中のログファイルへの fsync 回数"
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "保留中のログファイルへの書き込み回数"
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "ログファイルに書き込んだバイト数"
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "作成されたページ数"
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8707,51 +8731,51 @@ msgstr ""
"コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位"
"で計算されますが、この値を使えば簡単にバイト単位に変換できます"
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "読み込んだページ数"
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "書き込んだページ数"
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "現在待機中の行ロックの数"
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)"
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)"
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)"
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "行ロック取得時に待機した回数"
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB テーブルから削除した行数"
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB テーブルに挿入した行数"
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB テーブルから読み込んだ行数"
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB テーブルで更新された行数"
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8759,7 +8783,7 @@ msgstr ""
"変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの"
"数。以前は Not_flushed_key_blocks でした"
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8767,7 +8791,7 @@ msgstr ""
"キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え"
"ます"
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -8776,11 +8800,11 @@ msgstr ""
"キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ"
"クの最大数です"
-#: server_status.php:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "キャッシュからキーブロックを読み込んだリクエストの数"
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -8790,15 +8814,15 @@ msgstr ""
"く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/"
"Key_read_requests で計算できます"
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "キャッシュにキーブロックを書き込んだリクエストの数"
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "ディスクにキーブロックを物理書き込みした回数"
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -8808,17 +8832,17 @@ msgstr ""
"クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ"
"フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です"
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
-msgstr ""
+msgstr "サーバが起動してからの同時接続の最大数。"
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数"
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8826,38 +8850,41 @@ msgstr ""
"開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ"
"シュの値が小さすぎます"
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "開いているファイルの数"
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr "開いているストリームの数 (主にログの記録用です)"
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "開いているテーブルの数"
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっ"
+"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され"
+"るかもしれません。"
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "クエリキャッシュの空きメモリ量"
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "キャッシュのヒット数"
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "キャッシュに追加されたクエリの数"
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8869,7 +8896,7 @@ msgstr ""
"エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って"
"削除するクエリを決めます"
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8877,19 +8904,19 @@ msgstr ""
"キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ"
"シュしないことになっている) クエリの数"
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "キャッシュに登録されているクエリの数"
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "クエリキャッシュの総ブロック数"
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "フェイルセーフレプリケーションの状態 (未実装)"
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8897,11 +8924,11 @@ msgstr ""
"インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン"
"デックスをよく確認してください"
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr "参照テーブルで範囲検索をした結合の数"
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -8909,7 +8936,7 @@ msgstr ""
"キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数"
"(0 でない場合はテーブルのインデックスをよく確認してください)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8917,15 +8944,15 @@ msgstr ""
"最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ"
"ん)"
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr "最初のテーブルをフルスキャンした結合の数"
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数"
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -8933,22 +8960,22 @@ msgstr ""
"レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起"
"動時からの合計)"
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "このサーバがマスタに接続するスレーブである場合は ON になります"
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数"
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数"
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -8957,23 +8984,23 @@ msgstr ""
"ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合"
"は sort_buffer_size システム変数の値を増やした方がよいでしょう"
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "範囲指定付きでソートが行われた回数"
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "ソート済の行数"
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "テーブルをスキャンしたときに実行されたソートの回数"
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "テーブルロックをすぐに取得できた回数"
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8984,7 +9011,7 @@ msgstr ""
"フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで"
"もだめならテーブルを分割するか、レプリケーションを利用してください"
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -8994,11 +9021,11 @@ msgstr ""
"Connections で計算できます。この値が赤くなっている場合は thread_cache_size を"
"大きくしてください"
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "現在開いている接続の数"
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9009,7 +9036,7 @@ msgstr ""
"thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題"
"がない場合はふつうあまりパフォーマンスは向上しません)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "スリープしていないスレッドの数"
@@ -9132,7 +9159,7 @@ msgstr "サーバ変数と設定値"
msgid "Session value"
msgstr "セッション値"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "グローバル値"
@@ -9169,7 +9196,7 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
-"サーバーがHTTPS要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]"
+"サーバが HTTPS 要求を受け入れるように構成されている場合、[a@%s]このリンク[/a]"
"をたどり安全な接続を使用するようにしてください。"
#: setup/frames/index.inc.php:64
@@ -9349,7 +9376,7 @@ msgstr ""
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-"Webサーバでサポートしている場合、この%sオプション%sを有効にするべきです。"
+"ウェブサーバでサポートしている場合、この%sオプション%sを有効にするべきです。"
#: setup/lib/index.lib.php:258
#, php-format
@@ -9454,39 +9481,39 @@ msgstr "キーが短すぎます。少なくとも 8 文字は必要です。"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "キーは文字、数字[em]そして[/em]特殊文字を含める必要があります。"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "参照されている値を表示する"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。"
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "id %1$d の行を挿入しました"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP コードとして表示"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "SQL クエリを表示"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "検証した SQL 文"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "テーブル `%s` のインデックスに問題があります"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "ラベル"
@@ -9582,14 +9609,12 @@ msgid "Stacked"
msgstr "積み上げ形式"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "レポートのタイトル:"
+msgstr "グラフの題名"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "横軸:"
#: tbl_chart.php:113
#, fuzzy
@@ -9604,28 +9629,20 @@ msgid "The remaining columns"
msgstr "textarea の 1 行の文字数"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "横軸のラベル"
+msgstr "横軸のラベル:"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "値"
+msgstr "横軸の値"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "縦軸のラベル"
+msgstr "縦軸のラベル:"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "値"
+msgstr "縦軸の値"
#: tbl_create.php:56
#, php-format
@@ -9679,7 +9696,7 @@ msgstr ""
#: tbl_indexes.php:249
#, php-format
msgid "Add to index %s column(s)"
-msgstr "インデックスに %s の列を追加しました"
+msgstr "インデックスに %s 個のカラムを追加する"
#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
@@ -9717,7 +9734,7 @@ msgstr "(1 回)"
#: tbl_operations.php:293
msgid "Move table to (database. table):"
-msgstr "テーブルの移動先(database. table):"
+msgstr "テーブルを (データベース). (テーブル) へ移動する:"
#: tbl_operations.php:351
msgid "Table options"
@@ -9867,23 +9884,23 @@ msgstr "外部キー制約"
msgid "No rows selected"
msgstr "行が選択されていません"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"query by example\"を実行 (ワイルドカード: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "カラムを選択してください(最低 1 つ):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "検索条件(\"where\"節の内容)を追加してください:"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "ページあたりの行数"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "表示順:"
@@ -10166,6 +10183,12 @@ msgstr "ビューの名前"
msgid "Rename view to"
msgstr "リネーム後のビューの名前"
+#~ msgid "Theme / Style"
+#~ msgstr "テーマ / スタイル"
+
+#~ msgid "seconds"
+#~ msgstr "秒"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "クエリの実行時間の比較(マイクロ秒)"
diff --git a/po/ka.po b/po/ka.po
index 491e039c8e..eeb3437dc4 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "ყველას ჩვენება"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "ძებნა"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "ძებნა"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Keyname"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "აღწერილობა"
@@ -136,7 +136,7 @@ msgstr "ცხრილის კომენტარები"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -151,7 +151,7 @@ msgstr "სვეტების სახელები"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "ტიპი"
@@ -167,7 +167,7 @@ msgstr "ტიპი"
msgid "Null"
msgstr "ნული"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "კომენტარები"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "კომენტარები"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "არა"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "არა"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "View dump (schema) of database"
msgid "No tables found in database."
msgstr "No tables found in database."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "ყველას მონიშნვა"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "მონიშნვის მოხსნა"
@@ -272,7 +272,7 @@ msgstr "Database %s has been copied to %s"
msgid "Rename database to"
msgstr "Rename database to"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "ბრძანება"
@@ -336,7 +336,7 @@ msgstr "Switch to copied database"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -366,7 +366,7 @@ msgstr "Relational schema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "ცხრილი"
@@ -382,7 +382,7 @@ msgstr "სტრიქონები"
msgid "Size"
msgstr "ზომა"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in use"
@@ -408,7 +408,7 @@ msgstr "უკანასკნელი განახლება"
msgid "Last check"
msgstr "Last check"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -429,25 +429,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "დალაგება"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "ზრდადობით"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "კლებადობით"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "ჩვენება"
@@ -470,7 +470,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "ან"
@@ -503,39 +503,39 @@ msgstr "გამოიყენე ცხრილები"
msgid "SQL query on database %s :"
msgstr "SQL query on database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "წვდომა აკრძალულია"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "ერთი სიტყვა მაინც"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "ყველა სიტყვა"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "ზუსტი ფრაზა"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "რეგულარული გამოსახულება"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Search results for \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -543,20 +543,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s match(es) inside table %s "
msgstr[1] "%s match(es) inside table %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "არჩევა"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Dumping data for table"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -567,7 +567,7 @@ msgstr "Dumping data for table"
msgid "Delete"
msgstr "წაშლა"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -575,62 +575,62 @@ msgid_plural "Total: %s matches"
msgstr[0] "Total: %s match(es)"
msgstr[1] "Total: %s match(es)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "მონაცემთა ბაზაში ძებნა"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "იპოვე:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Words are separated by a space character (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "ცხრილ(ებ)ში:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "ველში:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "No tables found in database."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Table %s has been emptied"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "View %s has been dropped"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Table %s has been dropped"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -639,111 +639,111 @@ msgstr ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "ხედო"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "რეპლიკაცია"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "ჯამი"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "ყველას შემოწმება"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "მონიშნვის მოხსნა ყველასთვის"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Check tables having overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ექსპორტი"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "ხედის ამობეჭდვა"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "ცარიელი"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Drop"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "ცხრილის შემოწმება"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "ცხრილის ოპტიმიზება"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "ცხრილის აღდგენა"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyze table"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "მონაცემთა ბაზები არაა"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Replace table data with file"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Replace table data with file"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "მონაცემების ლექსიკონი"
@@ -759,9 +759,9 @@ msgstr "დაბლოკილი ცხრილების გამოტ
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "მონაცემთა ბაზა"
@@ -779,8 +779,8 @@ msgstr "შექმნა"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "მდგომარეობა"
@@ -927,7 +927,7 @@ msgstr "The bookmark has been deleted."
msgid "Showing bookmark"
msgstr "Showing bookmark"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s created"
@@ -954,7 +954,7 @@ msgstr ""
"won't be able to finish this import unless you increase php time limits."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -980,15 +980,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "ნამდვილად გსურთ "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
@@ -1092,190 +1092,234 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "სერვერის არჩევა"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Live query chart"
-msgstr "SQL Query box"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "სულ"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-#| msgid "Load"
-msgid "Loading"
-msgstr "ჩატვირთვა"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "პროცესები"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Rename database to"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Rename database to"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Copy database to"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "სიმბოლოთა ნაკრები"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "ცხრილის შექმნა"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "გამოიყენე ცხრილები"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "ძებნა"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide search results"
-msgstr "SQL Query box"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show search results"
-msgstr "SQL Query box"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "არჩევა"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "%s-ის წაშლა"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide query box"
-msgstr "SQL Query box"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show query box"
-msgstr "SQL Query box"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "ძრავები"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "რედაქტირება"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "სერვერის არჩევა"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Live query chart"
+msgstr "SQL Query box"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "სულ"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "სერვერის არჩევა"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "პროცესები"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "კავშირები"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL მოთხოვნები"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Show statistics"
+msgid "Query statistics"
+msgstr "სტატისტიკის ჩევნება"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+#| msgid "Load"
+msgid "Loading"
+msgstr "ჩატვირთვა"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "პროცესები"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Rename database to"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Rename database to"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Copy database to"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "სიმბოლოთა ნაკრები"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "ცხრილის შექმნა"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "გამოიყენე ცხრილები"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "ძებნა"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide search results"
+msgstr "SQL Query box"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show search results"
+msgstr "SQL Query box"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "არჩევა"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "%s-ის წაშლა"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide query box"
+msgstr "SQL Query box"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show query box"
+msgstr "SQL Query box"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "ძრავები"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1283,79 +1327,79 @@ msgstr "რედაქტირება"
msgid "Save"
msgstr "შენახვა"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "დამალვა"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL Query box"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL Query box"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "იგნორირება"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Select referenced key"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Select Foreign Key"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "აირჩიეთ საჩვენებელი ველი"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "პაროლის დაგენერირება"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "დაგენერირება"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "პაროლის შეცვლა"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "ორშ"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1365,130 +1409,130 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "მონაცემთა ბაზები არაა"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "შემოწირულობა"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "წინა"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "შემდეგი"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "სულ"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ბინარული"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "მარ"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "აპრ"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "მაი"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ივნ"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ივლ"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "აგვ"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ოქტ"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1496,178 +1540,178 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "დეკ"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "კვი"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "ორშ"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "სამ"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "პარ"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "შაბ"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "კვი"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "ორშ"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "სამ"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ოთხ"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "ხუთ"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "პარ"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "შაბ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "ვიკი"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1765,7 +1809,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "მონაცემთა ბაზები"
@@ -1839,25 +1883,25 @@ msgstr "%s გათიშულია ამ MySQL სერვერზე."
msgid "This MySQL server does not support the %s storage engine."
msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "არასწორი მონაცემთა ბაზა"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "ცხრილის არასწორი სახელი"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error renaming table %1$s to %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Table %s has been renamed to %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1889,10 +1933,9 @@ msgstr "Theme %s not found!"
msgid "Theme path not found for theme %s!"
msgstr "Theme path not found for theme %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "თემა / სტიპი"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1900,7 +1943,6 @@ msgstr "დაკავშირება შეუძლებელია: პ
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "მოგესალმებათ %s"
@@ -2053,7 +2095,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "ცხრილები"
@@ -2143,7 +2185,6 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "სერვერი"
@@ -2191,7 +2232,7 @@ msgid "Documentation"
msgstr "დოკუმენტაცია"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL მოთხოვნა"
@@ -2199,123 +2240,123 @@ msgstr "SQL მოთხოვნა"
msgid "MySQL said: "
msgstr "MySQL-მა თქვა: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL-ის ახსნა"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP კოდის გარეშე"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP კოდის შექმნა"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "განახლება"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "ძრავები"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profiling"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y, %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s დღე, %s საათი, %s წუთი და %s წამი"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "დასაწყისი"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "წინა"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "დასასრული"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Jump to database "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "The %s functionality is affected by a known bug, see %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2327,42 +2368,42 @@ msgstr "The %s functionality is affected by a known bug, see %s"
msgid "Structure"
msgstr "სტრუქტურა"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "ჩასმა"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "მოქმედებები"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web server upload directory"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "The directory you set for upload work cannot be reached"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2741,7 +2782,7 @@ msgstr "Default table tab"
msgid "Show binary contents as HEX by default"
msgstr "ორობითი შიგთავსის ჩვენება"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
#, fuzzy
msgid "Show binary contents as HEX"
msgstr "ორობითი შიგთავსის ჩვენება"
@@ -4883,7 +4924,7 @@ msgstr "შემქნელი"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "პრივილეგიები"
@@ -4895,7 +4936,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Return type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5111,9 +5152,9 @@ msgstr "სიმბოლოთა ნაკრები ფაილისთ
msgid "Compression:"
msgstr "შეკუმშვა"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "არაა"
@@ -5263,39 +5304,57 @@ msgstr ""
msgid "Language"
msgstr "ენა"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "CHAR textarea columns"
+msgid "Restore column order"
+msgstr "CHAR textarea columns"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d is not valid row number."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "row(s) starting from record #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "ჰორიზონტალური"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (rotated headers)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "ვერტიკალური"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "in %s mode and repeat headers after %s cells"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sort by key"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5308,101 +5367,101 @@ msgstr "Sort by key"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "პარამეტრები"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Full Texts"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relational key"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relational display field"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "ორობითი შიგთავსის ჩვენება"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Show BLOB contents"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "ინფორმაცია ბრაუზერის შესახებ"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "ასლი"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "სტრიქონი წაიშალა"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "მოთხოვნაში"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "სულ"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "მოთხოვნას დასჭირდა %01.4f წმ"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "შეცვლა"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF სქემის ჩვენება"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Create relation"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "ბმული ვერ მოიძებნა"
@@ -5450,7 +5509,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB-ის მდგომარეობა"
@@ -5972,7 +6031,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "ჰოსტი"
@@ -6182,7 +6241,7 @@ msgstr "SQL-ის შედეგი"
msgid "Generated by"
msgstr "Generated by"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6346,7 +6405,7 @@ msgstr ""
msgid "Add prefix"
msgstr "ახალი ველის დამატება"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "ცვლილების გარეშე"
@@ -6680,14 +6739,14 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "ცვლადი"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "მნიშვნელობა"
@@ -6929,20 +6988,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "ბინარული ჟურნალი"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "ცვლადები"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "სიმბოლოთა ნაკრებები"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "ძრავები"
@@ -6992,11 +7051,11 @@ msgstr "გაწმენდა"
msgid "Columns"
msgstr "სვეტების სახელები"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -7234,7 +7293,7 @@ msgstr "PARTITION definition"
msgid "+ Add a new value"
msgstr "ახალი სერვერის დამატება"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "დრო"
@@ -7480,7 +7539,7 @@ msgid "Protocol version"
msgstr "ოქმის ვერსია"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "მომხმარებელი"
@@ -7778,7 +7837,7 @@ msgstr "შექმნა"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "ოპერატორი"
@@ -7982,17 +8041,17 @@ msgstr "ცხრილი \"%s\" არ არსებობს!"
msgid "Select binary log to view"
msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "ფაილები"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Show Full Queries"
@@ -8523,7 +8582,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Show slave status"
@@ -8666,207 +8725,194 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Thread %s was successfully killed."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Handler"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Query cache"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Threads"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "დროებითი მონაცემები"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Delayed inserts"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Key cache"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Joins"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "დალაგება"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Transaction coordinator"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Flush (close) all tables"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Show open tables"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Show slave hosts"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Show slave status"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Flush query cache"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Runtime Information"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "სერვერის არჩევა"
-
-#: server_status.php:368
-#, fuzzy
-#| msgid "Show statistics"
-msgid "Query statistics"
-msgstr "სტატისტიკის ჩევნება"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "განახლება"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "წამში"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "წამში"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "in use"
+msgstr[1] "in use"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "წამში"
+msgstr[1] "წამში"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Thread %s was successfully killed."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Handler"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Query cache"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Threads"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "დროებითი მონაცემები"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Delayed inserts"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Key cache"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Joins"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "დალაგება"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Transaction coordinator"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Flush (close) all tables"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Show open tables"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Show slave hosts"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Show slave status"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Flush query cache"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Runtime Information"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "სერვერის არჩევა"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "არ შეცვალო პაროლი"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Show open tables"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "საათში"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "წუთში"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "წამში"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "მოთხოვნის ტიპი"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "რეპლიკაცია"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "ტრაფიკი"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8874,45 +8920,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "მიღებულია"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "გაიგზავნა"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "კავშირები"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "შეწყვეტილია"
-#: server_status.php:778
-msgid "Processes"
-msgstr "პროცესები"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8922,16 +8964,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8943,109 +8985,109 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "How many temporary files mysqld has created."
-#: server_status.php:846
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: server_status.php:847
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: server_status.php:848
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: server_status.php:849
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: server_status.php:850
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: server_status.php:851
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: server_status.php:852
-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:853
-msgid ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-msgstr ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-
-#: server_status.php:854
-msgid ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-msgstr ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-
#: server_status.php:855
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
#: server_status.php:856
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."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
msgstr ""
-"The number of requests to read the next row in key order. This is "
-"incremented if you are querying an index column with a range constraint or "
-"if you are doing an index scan."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
#: server_status.php:857
msgid ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
msgstr ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"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:858
-msgid ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
#: server_status.php:859
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:860
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:861
+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:862
+msgid ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+msgstr ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+
+#: server_status.php:863
+msgid ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgstr ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+
+#: server_status.php:864
+msgid ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+msgstr ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+
+#: server_status.php:865
+msgid ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+msgstr ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+
+#: server_status.php:866
+msgid ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+msgstr ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+
+#: server_status.php:867
+msgid ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:868
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 "
@@ -9057,36 +9099,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "The number of free pages."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -9096,7 +9138,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -9108,11 +9150,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -9120,7 +9162,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9128,11 +9170,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9140,7 +9182,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:874
+#: server_status.php:883
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 "
@@ -9154,51 +9196,51 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "The number of doublewrite operations that have been performed."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -9206,35 +9248,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "The number of pages created."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9242,51 +9284,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "The number of pages read."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "The number of pages written."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "The number of rows read from InnoDB tables."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "The number of rows updated in InnoDB tables."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9294,7 +9336,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:907
+#: server_status.php:916
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."
@@ -9302,7 +9344,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:908
+#: server_status.php:917
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 "
@@ -9312,11 +9354,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9326,15 +9368,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9344,17 +9386,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9362,38 +9404,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9405,7 +9447,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9413,19 +9455,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9433,11 +9475,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9445,7 +9487,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9453,15 +9495,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9469,78 +9511,78 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:936
+#: server_status.php:945
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:937
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: server_status.php:938
-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:939
-msgid ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-msgstr ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-
-#: server_status.php:940
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: server_status.php:941
-msgid "The number of sorted rows."
-msgstr "The number of sorted rows."
-
-#: server_status.php:942
-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:943
-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:944
-msgid ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-
-#: server_status.php:945
-msgid ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-msgstr ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-
#: server_status.php:946
-msgid "The number of currently open connections."
-msgstr "The number of currently open connections."
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
#: server_status.php:947
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:948
+msgid ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+msgstr ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+
+#: server_status.php:949
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:950
+msgid "The number of sorted rows."
+msgstr "The number of sorted rows."
+
+#: server_status.php:951
+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:952
+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:953
+msgid ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:954
+msgid ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+msgstr ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+
+#: server_status.php:955
+msgid "The number of currently open connections."
+msgstr "The number of currently open connections."
+
+#: server_status.php:956
+msgid ""
"The number of threads created to handle connections. If Threads_created is "
"big, you may want to increase the thread_cache_size value. (Normally this "
"doesn't give a notable performance improvement if you have a good thread "
@@ -9551,7 +9593,7 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
@@ -9679,7 +9721,7 @@ msgstr "სერვერის ცვლადები და პარამ
msgid "Session value"
msgstr "სესიის მნიშვნელობა"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "გლობალური მნიშვნელობა"
@@ -10057,41 +10099,41 @@ msgstr "Key is too short, it should have at least 8 characters"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Key should contain letters, numbers [em]and[/em] special characters"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ჩამატებული სტრიქონის id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP კოდის სახით ჩვენება"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Showing SQL query"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Label"
@@ -10484,25 +10526,25 @@ msgstr "Foreign key limit"
msgid "No rows selected"
msgstr "No rows selected"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Select fields (at least one):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Add search conditions (body of the \"where\" clause):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Number of rows per page"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Display order:"
@@ -10803,8 +10845,12 @@ msgstr "VIEW name"
msgid "Rename view to"
msgstr "Rename table to"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "თემა / სტიპი"
+
+#~ msgid "seconds"
+#~ msgstr "წამში"
+
#~ msgid "Query results"
#~ msgstr "Query results operations"
@@ -10818,8 +10864,6 @@ msgstr "Rename table to"
#~ msgid "Show processes"
#~ msgstr "პროცესების ჩვენება"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "დაბრუნება"
@@ -10838,15 +10882,9 @@ msgstr "Rename table to"
#~ "Query statistics : Since its startup, %s queries have been sent to "
#~ "the server."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "The privileges were reloaded successfully."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -10854,25 +10892,18 @@ msgstr "Rename table to"
#~ "შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation."
#~ "html#faq3_11@Documentation]FAQ 3.11[/a]"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "მოთხოვნის ტიპი"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "ახალი მომხმარებლის დამატება"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Create relation"
#~ msgid "Add a new User"
#~ msgstr "ახალი მომხმარებლის დამატება"
-#, fuzzy
-#~| msgid "Show logo in left frame"
#~ msgid "Show table row links on left side"
#~ msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება"
diff --git a/po/ko.po b/po/ko.po
index 6a1e9cb6f4..bbbf1c86fb 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: \n"
"Language-Team: korean \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "모두 보기"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보"
"안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "검색"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "검색"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "키 이름"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "설명"
@@ -136,7 +136,7 @@ msgstr "테이블 설명"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "컬럼명"
@@ -149,7 +149,7 @@ msgstr "컬럼명"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "종류"
@@ -165,7 +165,7 @@ msgstr "종류"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "링크 대상:"
msgid "Comments"
msgstr "설명(코멘트)"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "설명(코멘트)"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr " 아니오 "
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr " 아니오 "
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "데이터베이스의 덤프(스키마) 데이터 보기"
msgid "No tables found in database."
msgstr "데이터베이스에 테이블이 없습니다."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "모두 선택"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "모두 선택안함"
@@ -270,7 +270,7 @@ msgstr "데이터베이스 %s 를 %s 로 복사하였습니다."
msgid "Rename database to"
msgstr "데이터베이스 이름 변경"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "커맨드"
@@ -334,7 +334,7 @@ msgstr "복사한 테이블로 옮겨감"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -362,7 +362,7 @@ msgstr ""
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "테이블 "
@@ -378,7 +378,7 @@ msgstr "행(레코드)"
msgid "Size"
msgstr "크기"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "사용중"
@@ -404,7 +404,7 @@ msgstr "업데이트"
msgid "Last check"
msgstr "검사"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -423,25 +423,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "정렬"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "오름차순"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "내림차순(역순)"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "보기"
@@ -464,7 +464,7 @@ msgstr "삭제"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "또는"
@@ -493,59 +493,59 @@ msgstr "사용할 테이블"
msgid "SQL query on database %s :"
msgstr "데이터베이스 %s 에 SQL 질의:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "질의 실행"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "접근이 거부되었습니다."
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "아무 단어나"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "모든 단어"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "정확한 문구"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "정규표현식"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"%s \"의 검색 결과 %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s 건 일치 (테이블 %s )"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "보기"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "테이블의 덤프 데이터"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -556,177 +556,177 @@ msgstr "테이블의 덤프 데이터"
msgid "Delete"
msgstr "삭제"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "총: %s 건 일치"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "데이터베이스 검색"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "찾을 단어, 값 (와일드카드: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "찾는 방식:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "단어는 스페이스(\" \")로 구분됩니다."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "찾을 테이블:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "검색할 컬럼:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "데이터베이스에 테이블이 없습니다."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "테이블 %s 을 비웠습니다"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "뷰 %s가 제거되었습니다."
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "테이블 %s 을 제거했습니다."
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "트래킹이 활성화되었습니다."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "트래킹이 활성화되어 있지 않습니다."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "계"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "선택한 것을:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "모두 체크"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "모두 체크안함"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "내보내기"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "인쇄용 보기"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "비우기"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "삭제"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "테이블 검사"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "테이블 최적화"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "테이블 복구"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "테이블 분석"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "파일로 테이블 대치하기"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "파일로 테이블 대치하기"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "데이터 사전 (전체 구조보기)"
@@ -741,9 +741,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "데이터베이스"
@@ -760,8 +760,8 @@ msgstr " 만들기 "
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "상태"
@@ -905,7 +905,7 @@ msgstr "북마크를 제거했습니다."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -930,7 +930,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -956,15 +956,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "정말로 다음을 실행하시겠습니까? "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1063,179 +1063,221 @@ msgstr "선택한 사용자를 삭제"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "서버 선택"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL 질의"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "전체 사용량"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Local"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "프로세스 목록"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "데이터베이스 이름 변경"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "데이터베이스 이름 변경"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "데이터베이스 복사"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one column."
-msgid "Table must have at least one column"
-msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다."
-
-#: js/messages.php:96
-#, fuzzy
-msgid "Create Table"
-msgstr "새 페이지 만들기"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "사용할 테이블"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "검색"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL 질의"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL 질의"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "보기"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr " %s 을 삭제합니다"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL 질의"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL 질의"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "수정"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "서버 선택"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL 질의"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "전체 사용량"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "서버 선택"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "프로세스 목록"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "연결 수"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL 질의"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "행(레코드) 통계"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Local"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "프로세스 목록"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "데이터베이스 이름 변경"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "데이터베이스 이름 변경"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "데이터베이스 복사"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr ""
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "Table must have at least one column."
+msgid "Table must have at least one column"
+msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다."
+
+#: js/messages.php:109
+#, fuzzy
+msgid "Create Table"
+msgstr "새 페이지 만들기"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "사용할 테이블"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "검색"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL 질의"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL 질의"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "보기"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr " %s 을 삭제합니다"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL 질의"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL 질의"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1243,77 +1285,77 @@ msgstr "수정"
msgid "Save"
msgstr "저장"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL 질의"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL 질의"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "출력할 필드 선택"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "암호 변경"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "암호 변경"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "월"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1321,259 +1363,259 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "데이터베이스가 없습니다"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "완료"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "이전"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "다음"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "오늘"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "1월"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "2월"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "3월"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "4월"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "5월"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "6월"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "7월"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "8월"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "9월"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "10월"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "11월"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "12월"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "1월"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "2월"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "3월"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "4월"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "5월"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "6월"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "7월"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "8월"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "9월"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "10월"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "11월"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "12월"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "일요일"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "월요일"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "화요일"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "수요일"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "목요일"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "금요일"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "토요일"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "토"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "일"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "월"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "화"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "수"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "목"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "금"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "토"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "주"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "시"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "분"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "초"
@@ -1667,7 +1709,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "데이터베이스 "
@@ -1732,25 +1774,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "테이블 %s을(를) %s(으)로 변경하였습니다."
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1782,9 +1824,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1793,7 +1834,6 @@ msgstr "연결할 수 없습니다: 잘못된 설정."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s에 오셨습니다"
@@ -1941,7 +1981,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "테이블 수"
@@ -2023,7 +2063,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "서버"
@@ -2071,7 +2110,7 @@ msgid "Documentation"
msgstr "문서"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL 질의"
@@ -2079,119 +2118,119 @@ msgstr "SQL 질의"
msgid "MySQL said: "
msgstr "MySQL 메시지: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL 해석"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "해석(EXPLAIN) 생략"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP 코드 없이 보기"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP 코드 보기"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL 검사 생략"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL 검사"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%y-%m-%d %H:%M "
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, fuzzy, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s일 %s시간 %분 %초"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "처음"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "이전"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "마지막"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "데이터베이스 "%s" 로 이동."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2203,42 +2242,42 @@ msgstr ""
msgid "Structure"
msgstr "구조"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "삽입"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "테이블 작업"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "웹서버 업로드 디렉토리"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "업로드 디렉토리에 접근할 수 없습니다"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2594,7 +2633,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4567,7 +4606,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "사용권한"
@@ -4579,7 +4618,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4781,9 +4820,9 @@ msgstr "파일 문자셋:"
msgid "Compression:"
msgstr "압축"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "없음"
@@ -4918,39 +4957,57 @@ msgstr ""
msgid "Language"
msgstr "언어"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete columns"
+msgid "Restore column order"
+msgstr "컬럼 추가/삭제"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "행. 시작(행)위치"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "수평(가로)"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "수평 (rotated headers)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "수직(세로)"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr " %s 정렬 (%s 칸이 넘으면 헤더 반복)"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4963,100 +5020,100 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "테이블 작업"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Full Texts"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "선택한 줄(레코드)을 삭제 하였습니다."
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "질의(in query)"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "행(레코드) 보기"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "합계"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "질의 실행시간 %01.4f 초"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "변경"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "열(칼럼) 설명(코멘트) 출력하기"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "서버 버전"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr ""
@@ -5101,7 +5158,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5559,7 +5616,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "호스트"
@@ -5767,7 +5824,7 @@ msgstr "SQL 결과"
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "결과값이 없습니다. (빈 레코드 리턴.)"
@@ -5925,7 +5982,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "변화 없음"
@@ -6252,14 +6309,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "변수"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "값"
@@ -6496,21 +6553,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr "바이너리"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "환경설정값"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6559,11 +6616,11 @@ msgstr ""
msgid "Columns"
msgstr "열(칼럼) 이름"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "이 SQL 질의를 북마크함"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6783,7 +6840,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "새 사용자 추가"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "시간"
@@ -6939,7 +6996,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "사용자"
@@ -7209,7 +7266,7 @@ msgstr " 만들기 "
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "테이블 작업"
@@ -7395,18 +7452,18 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "필드"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7933,7 +7990,7 @@ msgstr "권한을 다시 로딩했습니다."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8072,263 +8129,245 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr ""
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "분"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "초"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "쓰레드 %s 를 죽였습니다."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "질의 종류"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "확장된 inserts"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "테이블 보기"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "런타임 정보"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "서버 선택"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "행(레코드) 통계"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-msgid "Refresh rate"
-msgstr ""
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "초"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "초"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "분"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "암호를 변경하지 않음"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "테이블 보기"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
msgid "Related links:"
msgstr "테이블 작업"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "질의 종류"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
"이 MySQL 서버는 %s 동안 구동되었습니다. 구동 시작날짜는 %s 입니다."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "소통량"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "받음"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "보냄"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "연결 수"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "실패한 시도"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr "프로세스 목록"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8336,78 +8375,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8415,7 +8454,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8423,42 +8462,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8466,33 +8505,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8501,227 +8540,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8729,99 +8768,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8829,18 +8868,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8848,7 +8887,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8971,7 +9010,7 @@ msgstr "서버의 환경설정"
msgid "Session value"
msgstr "세션 값"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -9249,41 +9288,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL 검사"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Label"
@@ -9664,25 +9703,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "필드 선택 (하나 이상):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "검색 조건 추가 (\"where\" 조건):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "페이지당 레코드 수"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "출력 순서:"
@@ -9976,12 +10015,12 @@ msgstr ""
msgid "Rename view to"
msgstr "테이블 이름 바꾸기"
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "seconds"
+#~ msgstr "초"
+
#~ msgid "Query results"
#~ msgstr "SQL 결과"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "리세트"
@@ -9989,8 +10028,6 @@ msgstr "테이블 이름 바꾸기"
#~ msgid "Show processes"
#~ msgstr "MySQL 프로세스 보기"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "리세트"
@@ -10007,15 +10044,9 @@ msgstr "테이블 이름 바꾸기"
#~ "the server."
#~ msgstr "SQL 질의 통계 : 이 서버에 %s 번의 질의가 보내졌습니다."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "권한을 다시 로딩했습니다."
-#, fuzzy
-#~| msgid ""
-#~| "Error moving the uploaded file, see [a@./Documentation."
-#~| "html#faq1_11@Documentation]FAQ 1.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -10023,17 +10054,12 @@ msgstr "테이블 이름 바꾸기"
#~ "업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation."
#~ "html#faq1_11@Documentation]FAQ 1.11[/a] 참조."
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "질의 종류"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "새 사용자 추가"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "서버 버전"
diff --git a/po/lt.po b/po/lt.po
index 48f2284a6c..912dc396cb 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
"Last-Translator: Kęstutis \n"
"Language-Team: lithuanian \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Rodyti viską"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"Tikslo langas neatnaujintas. Galbūt Jūs uždarėte pagrindinį langą arba Jūsų "
"naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Paieška"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Paieška"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Indekso pavadinimas"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Paaiškinimas"
@@ -137,7 +137,7 @@ msgstr "Lentelės komentarai"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Stulpelis"
@@ -150,7 +150,7 @@ msgstr "Stulpelis"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipas"
@@ -166,7 +166,7 @@ msgstr "Tipas"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Sąryšis su"
msgid "Comments"
msgstr "Komentarai"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Komentarai"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)"
msgid "No tables found in database."
msgstr "Duomenų bazėje nerasta lentelių."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Pažymėti visas"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Atžymėti visas"
@@ -271,7 +271,7 @@ msgstr "Duomenų bazė %s buvo nukopijuota į %s"
msgid "Rename database to"
msgstr "Pervadinti duomenų bazę į"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Komanda"
@@ -332,7 +332,7 @@ msgstr "Pereiti į nukopijuotą duomenų bazę"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -356,7 +356,7 @@ msgstr "Keisti arba eksportuoti ryšių schemą"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Lentelė"
@@ -372,7 +372,7 @@ msgstr "Eilutės"
msgid "Size"
msgstr "Dydis"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "šiuo metu naudojama"
@@ -398,7 +398,7 @@ msgstr "Paskutinis atnaujinimas"
msgid "Last check"
msgstr "Paskutinis patikrinimas"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "vizuali daryklė"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Rūšiuoti"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Didėjimo tvarka"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Mažėjimo tvarka"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Rodyti"
@@ -460,7 +460,7 @@ msgstr "Pakeičiant"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Arba"
@@ -489,39 +489,39 @@ msgstr "Naudoti lenteles"
msgid "SQL query on database %s :"
msgstr "SQL-užklausa duomenų bazėje %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Vykdyti užklausą"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Priėjimas uždraustas"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "bent vienas iš žodžių"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "visi žodžiai"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "ištisa frazė"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "kaip reguliarųjį išsireiškimą"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Paieškos rezultatai frazei „%s “ %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
@@ -529,19 +529,19 @@ msgstr[0] "%s atitikmuo lentelėje %s "
msgstr[1] "%s atitikmenys lentelėse %s "
msgstr[2] "%s atitikmenų lentelėse %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Peržiūrėti"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Ištrinti sutapimus %s lentelėje(ei)?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -552,7 +552,7 @@ msgstr "Ištrinti sutapimus %s lentelėje(ei)?"
msgid "Delete"
msgstr "Trinti"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -560,58 +560,58 @@ msgstr[0] "Iš viso: %s atitikmuo"
msgstr[1] "Iš viso: %s atitikmenys"
msgstr[2] "Iš viso: %s atitikmenų"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Paieška duomenų bazėje"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simbolis: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Rasti:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Žodžiai atskirti tarpo simboliu („ “)."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Lentelės(ių) viduje:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Stulpelio viduje:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Duomenų bazėje nerasta jokių lentelių."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Lentelės reikšmės %s ištuštintos"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Rodinys %s buvo panaikintas"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Lentelė %s panaikinta"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Sekimas yra aktyvus."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Sekimas yra neaktyvus."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -620,112 +620,112 @@ msgstr ""
"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
"%sdokumentacijoje%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Rodinys"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikavimas"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Sumos"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Pasirinktus:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Pažymėti visas"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Atžymėti visas"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Pažymėti turinčias perteklių"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksportuoti"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Spausdinti struktūrą"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Išvalyti"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Šalinti"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Patikrinti lentelę"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizuoti"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Taisyti lentelę"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizuoti lentelę"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Eiti į lentelę"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Pakeisti lentelės turinį failo duomenimis "
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Pakeisti lentelės turinį failo duomenimis "
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Duomenų žodynas"
@@ -740,9 +740,9 @@ msgstr "Sekamos lentelės"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Duomenų bazė"
@@ -758,8 +758,8 @@ msgstr "Sukurta"
msgid "Updated"
msgstr "Atnaujinta"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Būsena"
@@ -902,7 +902,7 @@ msgstr "Nuoroda ištrinta."
msgid "Showing bookmark"
msgstr "Rodomos žymelės"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Žymė %s sukurta"
@@ -930,7 +930,7 @@ msgstr ""
"padidintumėte PHP laiko limitą."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -957,15 +957,15 @@ msgstr "Spustelėkite pažymėjimui"
msgid "Click to unselect"
msgstr "Spustelėkite atžymėjimui"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Ar tikrai norite "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!"
@@ -1061,166 +1061,208 @@ msgstr "Šalinami pažymėti vartotojai"
msgid "Close"
msgstr "Uždaryti"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Pasirinkti serverį"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query box"
-msgid "Live query chart"
-msgstr "Rodyti užklausos laukelį"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Iš viso"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Įkeliama"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Vykdoma užklausa"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Klaida vykdant užklausą"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Šalinamas stulpelis"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Pridedamas pirminis raktas"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Keičiamas duomenų bazės pavadinimas"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Perkrauti duomenų bazę"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Kopijuojama duomenų bazė"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Keičiama koduotė"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Lentelė turi turėti bent vieną stulpelį"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Lentelės kūrimas"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Naudoti lenteles"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Ieškoma"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Slėpti paieškos kriterijų"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Rodyti paieškos kriterijų"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Peržiūrėti"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Šaliname: %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Slėpti užklausos laukelį"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Rodyti užklausos laukelį"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Redaguoti čia"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redaguoti"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Pasirinkti serverį"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query box"
+msgid "Live query chart"
+msgstr "Rodyti užklausos laukelį"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Iš viso"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Pasirinkti serverį"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesai"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Prisijungimai"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL užklausos"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Užklausų statistika"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Įkeliama"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Vykdoma užklausa"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Klaida vykdant užklausą"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Šalinamas stulpelis"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Pridedamas pirminis raktas"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Keičiamas duomenų bazės pavadinimas"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Perkrauti duomenų bazę"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopijuojama duomenų bazė"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Keičiama koduotė"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Lentelė turi turėti bent vieną stulpelį"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Lentelės kūrimas"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Naudoti lenteles"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Ieškoma"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Slėpti paieškos kriterijų"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "Rodyti paieškos kriterijų"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Peržiūrėti"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Šaliname: %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Slėpti užklausos laukelį"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Rodyti užklausos laukelį"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Redaguoti čia"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1228,67 +1270,67 @@ msgstr "Redaguoti"
msgid "Save"
msgstr "Išsaugoti"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Paslėpti"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Slėpti paieškos kriterijų"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Rodyti paieškos kriterijų"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoruoti"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Pasirinkite siejamą raktą"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Pasirinkti Foreign Key"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pasirinkite laukus peržiūrai"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Pridėti parinktį stulpeliui/skilčiai"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Generuoti slaptažodį"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generuoti"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Pakeisti slaptažodį"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Daugiau"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1298,260 +1340,260 @@ msgstr ""
"atnaujinimą. Naujausia versija yra %s, išleista %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", naujausia stabili versija:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Eiti į duomenų bazę"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Atlikta"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Ankstesnis"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Kitas"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Šiandien"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "sausio"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "vasario"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "kovo"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "balandžio"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Geg"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "birželio"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "liepos"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "rugpjūčio"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "rugsėjo"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "spalio"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "lapkričio"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "gruodžio"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Sau"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Vas"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Kov"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Bal"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Geg"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Bir"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Lie"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Rgp"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Rgs"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Spa"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Lap"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Grd"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Sekmadienis"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Pirmadienis"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Antradienis"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Trečiadienis"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Ketvirtadienis"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Penktadienis"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Šeštadienis"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Sek"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Pir"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Ant"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Tre"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Ket"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pen"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Šeš"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Sk"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Pr"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "An"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Tr"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Kt"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Pn"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Št"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Sav."
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Valanda"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minutė"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekundės"
@@ -1645,7 +1687,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Duomenų bazės"
@@ -1718,25 +1760,25 @@ msgstr "%s šiame MySQL serveryje yra išjungtas."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Neteisingas duomenų bazės vardas"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Neteisingas lentelės vardas"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Klaida pervadinant lentelę iš %1$s į %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Lentelė %s pervadinta į %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1768,10 +1810,9 @@ msgstr "Tema %s nerasta!"
msgid "Theme path not found for theme %s!"
msgstr "Kelias iki temos nerastas temai %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Stilius"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1779,7 +1820,6 @@ msgstr "Neįmanoma prisijungti: neteisingi duomenys."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Jūs naudojate %s"
@@ -1932,7 +1972,7 @@ msgstr "padalintas"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Lentelės"
@@ -2015,7 +2055,6 @@ msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Serveris"
@@ -2063,7 +2102,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL užklausa"
@@ -2071,119 +2110,119 @@ msgstr "SQL užklausa"
msgid "MySQL said: "
msgstr "MySQL atsakymas: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Nepavyko prisijungti prie SQL tikrintuvo!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Paaiškinti SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Praleisti SQL užklausos aiškinimą"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "be PHP kodo"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP kodas"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Atnaujinti"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Praleisti SQL užklausos tikrinimą"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Patikrinti SQL užklausą"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Greitas užklausos redagavimas"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Redaguoti čia"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profiliavimas"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y m. %B %d d. %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s d., %s val., %s min. ir %s s"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Pradžia"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Ankstesnis"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Pabaiga"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Pereiti į „%s“ duomenų bazę."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2195,41 +2234,41 @@ msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s"
msgid "Structure"
msgstr "Struktūra"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Įterpti"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Veiksmai"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Naršyti savo kompiuteryje:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams."
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Nėra failų išsiuntimui"
@@ -2591,7 +2630,7 @@ msgstr "Numatytoji lentelės kortelė"
msgid "Show binary contents as HEX by default"
msgstr "Rodyti dvejetainį turinį kaip šešioliktainį pagal nutylėjimą"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Rodyti dvejetainį turinį kaip šešioliktainį"
@@ -4584,7 +4623,7 @@ msgstr "Projektavimas"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegijos"
@@ -4596,7 +4635,7 @@ msgstr ""
msgid "Return type"
msgstr "Gražinimo tipas"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4781,9 +4820,9 @@ msgstr "Simbolių koduotė faile:"
msgid "Compression:"
msgstr "Glaudinti:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Ne"
@@ -4912,37 +4951,57 @@ msgstr "Formato specifiniai nustatymai:"
msgid "Language"
msgstr "Kalba"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "Textarea laukeliai"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Spustelėkite pažymėjimui"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d nėra galimas eilutės numeris."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "eilučių(tės) pradedant nuo #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontaliai"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontalūs (pasukti pavadinimai)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikaliai"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, fuzzy, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "išdėstant %s pakartoti antraštes kas %s laukelių"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Rūšiuoti pagal raktą"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4955,96 +5014,96 @@ msgstr "Rūšiuoti pagal raktą"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Nustatymai"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Tekstus rodyti dalinai"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Tekstus rodyti pilnai"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Sąryšių raktas"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Ryšių schema"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Rodyti dvejetainį turinį"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Rodyti BLOB turinį"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Naršyklės transformacija"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopijuoti"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Eilutė buvo ištrinta"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Stabdyti procesą"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "užklausa vykdoma"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Rodomi įrašai"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "iš viso "
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Užklausa užtruko %01.4f sek."
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Redaguoti"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Veiksmai su užklausos rezultatais"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Spausdinti rezultatus (su pilnais tekstais)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Rodyti diagramą"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Sukurti naudotoją"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Sąryšis nerastas"
@@ -5089,7 +5148,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buferio Pool'as"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB būsena"
@@ -5549,7 +5608,7 @@ msgstr "Rodyti MIME-tipus"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Darbinė stotis"
@@ -5770,7 +5829,7 @@ msgstr "SQL rezultatas"
msgid "Generated by"
msgstr "Sugeneravo"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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ų)."
@@ -5935,7 +5994,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Keisti žurnalą(us) (indeksą)"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Nėra pakeitimų"
@@ -6272,14 +6331,14 @@ msgid "Slave status"
msgstr "Pavaldžiojo serverio būklė (Slave status)"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Kintamasis"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Reikšmė"
@@ -6507,20 +6566,20 @@ msgid "Synchronize"
msgstr "Sinchronizuoti"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Dvejetainis log'as"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Kintamieji"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Koduotės"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Varikliai"
@@ -6567,11 +6626,11 @@ msgstr "Išvalyti"
msgid "Columns"
msgstr "Stulpelių vardai"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Šios SQL užklausą pasižymėti kaip"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Leisti kitiems vartotojams naudotis šia žyme"
@@ -6801,7 +6860,7 @@ msgstr "SKAIDINIO (PARTITION) apibrėžimas"
msgid "+ Add a new value"
msgstr "Pridėti naują serverį"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Laikas"
@@ -7018,7 +7077,7 @@ msgid "Protocol version"
msgstr "Protokolo versija"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Naudotojas"
@@ -7297,7 +7356,7 @@ msgstr "Sukurti"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operatorius"
@@ -7489,17 +7548,17 @@ msgstr "Failo nėra"
msgid "Select binary log to view"
msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Failai"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Trumpinti rodomas užklausas"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Rodyti pilnas užklausas"
@@ -8033,7 +8092,7 @@ msgstr ""
"Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo "
"(replication) procese."
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Rodyti pagrindinio serverio būklę"
@@ -8192,180 +8251,171 @@ msgstr ""
"Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis "
"(slave). Konfigūruoti !"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Atnaujinti"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minutė"
+msgstr[1] "Minutė"
+msgstr[2] "Minutė"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Sekundės"
+msgstr[1] "Sekundės"
+msgstr[2] "Sekundės"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Gija %s buvo sėkmingai išjungta."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Užklausų saugykla"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Gijos"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Laikini duomenys"
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Naudoti užlaikytus įterpimus"
-#: server_status.php:236
+#: server_status.php:269
#, fuzzy
msgid "Key cache"
msgstr "Užklausų saugykla"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Rūšiavimas"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Rodyti atidarytas lenteles"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Rodyti pavaldinio būklę"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Veikimo informacija"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Pasirinkti serverį"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Užklausų statistika"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Atnaujinti"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekundės"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekundės"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minutė"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nekeisti slaptažodžio"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Rodyti atidarytas lenteles"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Sąryšiai"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per valandą"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per minutę"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per sekundę"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Užklausos tipas"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8373,95 +8423,91 @@ msgstr ""
"Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis "
"serveris dauginimo procese."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo "
"procese."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo "
"procese."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Dauginimo būsena"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Apkrovimas"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Gauta"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Siųsta"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Prisijungimai"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Daugiausia lygiagrečių prisijungimų"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Nepavykę bandymai"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Nutraukta"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesai"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Nepavyko prisijungti prie MySQL serverio"
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8469,78 +8515,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Kiek laikinųjų failų mysqld sukūrė."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Įvykdytų FLUSH užklausų skaičius."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Vidinių COMMIT užklausų skaičius."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8548,7 +8594,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8556,44 +8602,44 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Vidinių ROLLBACK užklausų skaičius."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
#, fuzzy
msgid "The number of pages currently dirty."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
#, fuzzy
msgid "The number of free pages."
msgstr "Įkeltų eilučių skaičius"
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8601,33 +8647,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8636,237 +8682,237 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
#, fuzzy
msgid "The current number of pending fsync() operations."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:878
+#: server_status.php:887
#, fuzzy
msgid "The current number of pending reads."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:879
+#: server_status.php:888
#, fuzzy
msgid "The current number of pending writes."
msgstr "Duomenų įrašymų skaičius."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Duomenų įrašymų skaičius."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
#, fuzzy
msgid "The number of log write requests."
msgstr "Įkeltų eilučių skaičius"
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
#, fuzzy
msgid "The number of pages created."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
#, fuzzy
msgid "The number of pages read."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:896
+#: server_status.php:905
#, fuzzy
msgid "The number of pages written."
msgstr "Duomenų įrašymų skaičius."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
#, fuzzy
msgid "The number of files that are open."
msgstr "Duomenų įrašymų skaičius."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
#, fuzzy
msgid "The number of tables that are open."
msgstr "Duomenų įrašymų skaičius."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
#, fuzzy
msgid "The number of cache hits."
msgstr "Įkeltų eilučių skaičius"
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8874,100 +8920,100 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
#, fuzzy
msgid "The number of sorted rows."
msgstr "Įkeltų eilučių skaičius"
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8975,18 +9021,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8994,7 +9040,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9119,7 +9165,7 @@ msgstr "Serverio kintamieji ir nustatymai"
msgid "Session value"
msgstr "Sesijos reikšmė"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globali reikšmė"
@@ -9464,41 +9510,41 @@ msgstr "Raktas per daug trumpas, jis turėtų turėti bent 8 simbolius"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Raktas turi turėti raidžių, skaičių [em]ir[/em] specialiųjų ženklų"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Naršyti išorines reikšmes"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Įterpto įrašo id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Rodomas PHP kodas"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Rodoma SQL užklausa"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Patikrinti SQL užklausą"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Iškilo problemos su `%s` lentelės indeksais"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Nuorodos Antraštė"
@@ -9877,25 +9923,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Nepasirinkti įrašai"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Vykdyti \"užklausą pagal pavyzdį\" (pakaitos simbolis: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Pasirinkite laukus (nors vieną)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Eilučių skaičius puslapyje"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Atvaizdavimo tvarka:"
@@ -10194,6 +10240,12 @@ msgstr "VIEW pavadinimas"
msgid "Rename view to"
msgstr "Pervadinti lentelę į"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Stilius"
+
+#~ msgid "seconds"
+#~ msgstr "Sekundės"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Užklausų vykdymo laiko palyginimas (milisekundėmis)"
diff --git a/po/lv.po b/po/lv.po
index 7e403ea584..aba8faf0ee 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Rādīt visu"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības "
"iestādījumu dēļ."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Meklēt"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "Meklēt"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Atslēgas nosaukums"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Apraksts"
@@ -134,7 +134,7 @@ msgstr "Komentārs tabulai"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -149,7 +149,7 @@ msgstr "Kolonnu nosaukumi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tips"
@@ -165,7 +165,7 @@ msgstr "Tips"
msgid "Null"
msgstr "Nulle"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "Linki uz"
msgid "Comments"
msgstr "Komentāri"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "Komentāri"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nē"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "Nē"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "Apskatīt datubāzes dampu (shēmu)"
msgid "No tables found in database."
msgstr "Tabulas nav atrastas šajā datubāzē."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Iezīmēt visu"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Neiezīmēt neko"
@@ -270,7 +270,7 @@ msgstr "Datubāze %s tika pārkopēta uz %s"
msgid "Rename database to"
msgstr "Pārsaukt datubāzi par"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Komanda"
@@ -334,7 +334,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -364,7 +364,7 @@ msgstr "Relāciju shēma"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabula"
@@ -380,7 +380,7 @@ msgstr "Rindas"
msgid "Size"
msgstr "Izmērs"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "lietošanā"
@@ -406,7 +406,7 @@ msgstr "Pēdējā atjaunošana"
msgid "Last check"
msgstr "Pēdējā pārbaude"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -427,25 +427,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Kārtošana"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Augošā secībā"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Dilstošā secībā"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Rādīt"
@@ -468,7 +468,7 @@ msgstr "Dzēst"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Vai"
@@ -501,39 +501,39 @@ msgstr "Lietot tabulas"
msgid "SQL query on database %s :"
msgstr "SQL vaicājums uz datubāzes %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Pieeja aizliegta"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "kaut viens no vārdiem"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "visi vārdi"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "precīza frāze"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "kā regulārā izteiksme"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Meklēšanas rezultāti \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -541,20 +541,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s rezultāti tabulā %s "
msgstr[1] "%s rezultāti tabulā %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Apskatīt"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Dati tabulai"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -565,7 +565,7 @@ msgstr "Dati tabulai"
msgid "Delete"
msgstr "Dzēst"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -573,173 +573,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "Kopumā: %s rezultāti"
msgstr[1] "Kopumā: %s rezultāti"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Meklēt datubāzē"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Atrast:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Vārdi ir atdalīti ar tukšumu (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Tabulā(s):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Tabulā(s):"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Tabulas nav atrastas šajā datubāzē."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabula %s tika iztukšota"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Lauks %s tika izdzēsts"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabula %s tika izdzēsta"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "Relācijas"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Kopumā"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Ar iezīmēto:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Iezīmēt visu"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Neiezīmēt neko"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Iezīmēt tabulas ar pārtēriņu"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksports"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Izdrukas versija"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Iztukšot"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Likvidēt"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Pārbaudīt tabulu"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizēt tabulu"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Restaurēt tabulu"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizēt tabulu"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Aizvietot tabulas datus ar datiem no faila"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Aizvietot tabulas datus ar datiem no faila"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datu vārdnīca"
@@ -754,9 +754,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Datubāze"
@@ -773,8 +773,8 @@ msgstr "Izveidot"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Statuss"
@@ -914,7 +914,7 @@ msgstr "Ieraksts tika dzēsts."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -937,7 +937,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -964,15 +964,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda ir aizliegta."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Vai Jūs tiešām gribat "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!"
@@ -1074,181 +1074,223 @@ msgstr "Dzēst izvēlētos lietotājus"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Servera izvēle"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL vaicājums"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Kopā"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Lokāls"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Procesi"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Pārsaukt datubāzi par"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Pārsaukt datubāzi par"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Kopēt datubāzi uz"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Kodējums"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Izveidot jaunu lapu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Lietot tabulas"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Meklēt"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL vaicājums"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL vaicājums"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Apskatīt"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Dzēšam %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL vaicājums"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL vaicājums"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Labot"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Servera izvēle"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL vaicājums"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Kopā"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Servera izvēle"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesi"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Konekcijas"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL vaicājums"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Rindas statistika"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Lokāls"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Procesi"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Pārsaukt datubāzi par"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Pārsaukt datubāzi par"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Kopēt datubāzi uz"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Kodējums"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Izveidot jaunu lapu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Lietot tabulas"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Meklēt"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL vaicājums"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL vaicājums"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Apskatīt"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Dzēšam %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL vaicājums"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL vaicājums"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1256,78 +1298,78 @@ msgstr "Labot"
msgid "Save"
msgstr "Saglabāt"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL vaicājums"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL vaicājums"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorēt"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Mainīt paroli"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Uzģenerēja"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Mainīt paroli"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "P"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1335,128 +1377,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Nav datubāzu"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nav"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Iepriekšējie"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Nākamie"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kopā"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binārais"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jūn"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jūl"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1464,176 +1506,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sv"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "P"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "O"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pk"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "S"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sv"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "O"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "C"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pk"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "S"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lietošanā"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1726,7 +1768,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Datubāzes"
@@ -1793,25 +1835,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabula %s tika pārsaukta par %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1843,10 +1885,9 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tēma / Stils"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1854,7 +1895,6 @@ msgstr "Nevar pieslēgties: kļūda konfigurācijā."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Laipni lūgti %s"
@@ -2004,7 +2044,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabulas"
@@ -2089,7 +2129,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Serveris"
@@ -2137,7 +2176,7 @@ msgid "Documentation"
msgstr "Dokumentācija"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL vaicājums"
@@ -2145,119 +2184,119 @@ msgstr "SQL vaicājums"
msgid "MySQL said: "
msgstr "MySQL teica: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Izskaidrot SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Neizskaidrot SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Izveidot PHP kodu"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Atjaunot"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Nepārbaudīt SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Pārbaudīt SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "baiti"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Sākums"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Iepriekšējie"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Beigas"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "pāriet pie datubāzes "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2269,42 +2308,42 @@ msgstr ""
msgid "Structure"
msgstr "Struktūra"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Pievienot"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Darbības"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web servera augšupielādes direktorija"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2662,7 +2701,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4629,7 +4668,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilēģijas"
@@ -4641,7 +4680,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4846,9 +4885,9 @@ msgstr "Tabulas kodējums:"
msgid "Compression:"
msgstr "Kompresija"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Nav"
@@ -4983,39 +5022,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Pievienot/Dzēst laukus (kolonnas)"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "rindas sākot no"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontālā"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontālā (pagriezti virsraksti)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikālā"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s skatā un atkārtot virsrakstus ik pēc %s rindām"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Kārtot pēc atslēgas"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5028,103 +5085,103 @@ msgstr "Kārtot pēc atslēgas"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Darbības"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Daļēji teksti"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Pilni teksti"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relāciju shēma"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relāciju shēma"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pārlūkprogrammas transformācija"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Ieraksts tika dzēsts"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Nogalināt"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "vaicājumā"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Parādu rindas"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "kopā"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Vaicājums ilga %01.4f s"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Labot"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Drukas skats (ar pilniem tekstiem)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Rādīt PDF shēmu"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Servera versija"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Links nav atrasts"
@@ -5170,7 +5227,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB statuss"
@@ -5642,7 +5699,7 @@ msgstr "Pieejamie MIME tipi"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Hosts"
@@ -5852,7 +5909,7 @@ msgstr "SQL rezultāts"
msgid "Generated by"
msgstr "Uzģenerēja"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6014,7 +6071,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Pievienot jaunu lauku"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Netika labots"
@@ -6342,14 +6399,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Mainīgais"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Vērtība"
@@ -6589,20 +6646,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binārais log-fails"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Mainīgie"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Rakstzīmju kodējumi"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6652,11 +6709,11 @@ msgstr "Kalendārs"
msgid "Columns"
msgstr "Kolonnu nosaukumi"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Saglabāt šo SQL vaicājumu"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
@@ -6892,7 +6949,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Pievienot jaunu lietotāju"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Laiks"
@@ -7111,7 +7168,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Lietotājs"
@@ -7382,7 +7439,7 @@ msgstr "Izveidot"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operators"
@@ -7572,18 +7629,18 @@ msgstr "Tabula \"%s\" neeksistē!"
msgid "Select binary log to view"
msgstr "Izvēlieties bināro log-failu apskatei"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Lauki"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Ierobežot parādīto vaicājumu garumu"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Rādīt pilnos vaicājumus"
@@ -8121,7 +8178,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8260,12 +8317,34 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Atjaunot"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "lietošanā"
+msgstr[1] "lietošanā"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "sekundē"
+msgstr[1] "sekundē"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Process %s tika veiksmīgi nogalināts."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8273,255 +8352,217 @@ msgstr ""
"phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika "
"izbeigts."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Vaicājuma tips"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Lietot aizturētos INSERT"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Rādīt tabulas"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Izpildes laika informācija"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Servera izvēle"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Rindas statistika"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Atjaunot"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "sekundē"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "sekundē"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "lietošanā"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemainīt paroli"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Rādīt tabulas"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relācijas"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "stundā"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "minūtē"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "sekundē"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Vaicājuma tips"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Datu apmaiņa"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Saņemts"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Nosūtīts"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Konekcijas"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Neveiksmīgi mēģinājumi"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Pārtraukts"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesi"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8529,78 +8570,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8608,7 +8649,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8616,42 +8657,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8659,33 +8700,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8694,227 +8735,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8922,99 +8963,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9022,18 +9063,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9041,7 +9082,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9164,7 +9205,7 @@ msgstr "Servera mainīgie un konfigurācija"
msgid "Session value"
msgstr "Sesijas vērtība"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globālā vērtība"
@@ -9442,41 +9483,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pārlūkot ārējās vērtības"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Pārbaudīt SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problēmas ar indeksiem tabulā `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Nosaukums"
@@ -9863,25 +9904,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Rindas nav iezīmētas"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Izvēlieties laukus (kaut vienu):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Rindu skaits vienā lapā"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Attēlošanas secība:"
@@ -10184,6 +10225,14 @@ msgstr ""
msgid "Rename view to"
msgstr "Pārsaukt tabulu uz"
+#~ msgid "Theme / Style"
+#~ msgstr "Tēma / Stils"
+
+#, fuzzy
+#~| msgid "per second"
+#~ msgid "seconds"
+#~ msgstr "sekundē"
+
#, fuzzy
#~| msgid "SQL result"
#~ msgid "Query results"
diff --git a/po/mk.po b/po/mk.po
index bd9f5bb6b8..47aeea0e15 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,9 +3,9 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
-"Last-Translator: \n"
+"Last-Translator: \n"
"Language-Team: macedonian_cyrillic \n"
"Language: mk\n"
"MIME-Version: 1.0\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "прикажи ги сите"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"затворили матични прозор, или ваш претраживач онемогућава ажурирање међу "
"прозорима због сигурносних подешавања"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Пребарување"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Пребарување"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Име на клуч"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Опис"
@@ -135,7 +135,7 @@ msgstr "Коментар на табелата"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -150,7 +150,7 @@ msgstr "Имиња на колони"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -166,7 +166,7 @@ msgstr "Тип"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Врски кон"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Коментари"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Прикажи содржина (шема) на базата"
msgid "No tables found in database."
msgstr "Табелите не се пронајдени во базата на податоци."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "избери се"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "ништо"
@@ -271,15 +271,13 @@ msgstr "Базата на податоци %s е ископирана во %s"
msgid "Rename database to"
msgstr "Преименувај ја базата на податоци во"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Наредба"
#: db_operations.php:440
-#, fuzzy
-#| msgid "Rename database to"
msgid "Remove database"
-msgstr "Преименувај ја базата на податоци во"
+msgstr "Избриши ја базата на податоци."
#: db_operations.php:452
#, php-format
@@ -335,7 +333,7 @@ msgstr "Префрли се на копираната база на подато
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -365,7 +363,7 @@ msgstr "Релациона шема"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Табела"
@@ -381,7 +379,7 @@ msgstr "Записи"
msgid "Size"
msgstr "Големина"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "се користи"
@@ -407,7 +405,7 @@ msgstr "Последна измена"
msgid "Last check"
msgstr "Последна проверка"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -421,32 +419,32 @@ msgstr "Морате да изберете барем една колона за
#: db_qbe.php:186
msgid "Switch to"
-msgstr ""
+msgstr "Префрли се во"
#: db_qbe.php:186
msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Подредуваање"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Растечки редослед"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Опаѓачки редослед"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Прикажи"
@@ -469,7 +467,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "или"
@@ -502,39 +500,39 @@ msgstr "Користи табели"
msgid "SQL query on database %s :"
msgstr "SQL упит на базата на податоци %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Изврши SQL"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Пристапот не е допуштен"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "барем еден од зборовите"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "сите зборови"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "точен израз"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "како регуларен израз"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Резултати од пребарувањето за \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -542,20 +540,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s погодоци во табелата %s "
msgstr[1] "%s погодоци во табелата %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Преглед"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Приказ на податоци од табелата"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -566,7 +564,7 @@ msgstr "Приказ на податоци од табелата"
msgid "Delete"
msgstr "избриши"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -574,173 +572,169 @@ msgid_plural "Total: %s matches"
msgstr[0] "вкупно: %s погодоци"
msgstr[1] "вкупно: %s погодоци"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Пребарување низ базата на податоци"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Барај:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Зборовите се одвојуваат со празно место (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "во табела(и):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "во табела(и):"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Табелите не се пронајдени во базата на податоци."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Табелата %s е испразнета"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Прегледот %s е избришан"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Табелата %s е избришана"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Поглед"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "Релации"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Вкупно"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е основно складиште на овој MySQL сервер."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Обележаното:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "обележи ги сите"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "ниедно"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "табели кои имаат пречекорувања"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Извоз"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Преглед за печатење"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Испразни"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Бриши"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Проверка на табелата"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Оптимизација на табелата"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Поправка на табелата"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Анализа на табелата"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
-msgstr ""
+msgstr "Додај префикс кон табелата"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
-#, fuzzy
-#| msgid "Replace table data with file"
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
-msgstr "Замени ги податоците во табелата со подаците од податотеката"
+msgstr "Замени го префиксот на табелата"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
-#, fuzzy
-#| msgid "Replace table data with file"
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
-msgstr "Замени ги податоците во табелата со подаците од податотеката"
+msgstr "Копирај табела со префикс"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Речник на податоци"
@@ -755,27 +749,26 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "База на податоци"
#: db_tracking.php:86
msgid "Last version"
-msgstr ""
+msgstr "Последна Верзија"
#: db_tracking.php:87 tbl_tracking.php:645
-#, fuzzy
msgid "Created"
-msgstr "Креирај"
+msgstr "Креирано"
#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
-msgstr ""
+msgstr "Ажурирано"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Статус"
@@ -788,7 +781,7 @@ msgstr "Акција"
#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
-msgstr ""
+msgstr "Избришете го податоците за тракирање од табелава"
#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
@@ -915,7 +908,7 @@ msgstr "Маркерот е избришан."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -938,7 +931,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -964,15 +957,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" командата е оневозможена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Дали навистина сакате да "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!"
@@ -1073,182 +1066,225 @@ msgstr "Избриши ги селектираните корисници"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Избор на сервер"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL упит"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Вкупно"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Локален"
-
-#: js/messages.php:84
-#, fuzzy
-msgid "Processing Request"
-msgstr "Листа на процеси"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Преименувај ја базата на податоци во"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Преименувај ја базата на податоци во"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Копирај ја базата на податоци во"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Кодна страна"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "You have to choose at least one column to display"
-msgid "Table must have at least one column"
-msgstr "Морате да изберете барем една колона за приказ"
-
-#: js/messages.php:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Направи нова страница"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Користи табели"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Пребарување"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL упит"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL упит"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Преглед"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Бришам %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL упит"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL упит"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Складишта"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Избор на сервер"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL упит"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Вкупно"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Избор на сервер"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+#, fuzzy
+msgid "Processes"
+msgstr "Листа на процеси"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Конекции"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL упит"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Статистики за записите"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Локален"
+
+#: js/messages.php:97
+#, fuzzy
+msgid "Processing Request"
+msgstr "Листа на процеси"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Преименувај ја базата на податоци во"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Преименувај ја базата на податоци во"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Копирај ја базата на податоци во"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Кодна страна"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "You have to choose at least one column to display"
+msgid "Table must have at least one column"
+msgstr "Морате да изберете барем една колона за приказ"
+
+#: js/messages.php:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Направи нова страница"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Користи табели"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Пребарување"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL упит"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL упит"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Преглед"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Бришам %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL упит"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL упит"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Складишта"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1256,77 +1292,77 @@ msgstr "Промени"
msgid "Save"
msgstr "Сочувај"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL упит"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнорирај"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Избери полиња за прикажување"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Генерирање на лозинка"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генерирај"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промена на лозинка"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1334,128 +1370,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Базата на податоци не постои"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "нема"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Следен"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Вкупно"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарен"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "мај"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1463,176 +1499,176 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "дек"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вто"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Саб"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вто"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Саб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1727,7 +1763,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "База на податоци"
@@ -1794,25 +1830,25 @@ msgstr "%s е оневозможен на овој MySQL сервер."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Овој MySQL сервер не подржува %s вид на складиште."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Табелата %s е преименувана во %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1844,10 +1880,9 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Тема / стил"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1855,7 +1890,6 @@ msgstr "Не може да се поврзам: лоши подесувања."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s Добредојдовте"
@@ -2006,7 +2040,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Табели"
@@ -2092,7 +2126,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сервер"
@@ -2141,7 +2174,7 @@ msgid "Documentation"
msgstr "Документација"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL упит"
@@ -2149,121 +2182,121 @@ msgstr "SQL упит"
msgid "MySQL said: "
msgstr "MySQL порака: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Објасни SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Прескокни ги објаснувањата на SQL-от"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "без PHP код"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Освежи"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Прескокни ја проверката на SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Провери SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Складишта"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "бајти"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. во %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s денови, %s часови, %s минути и %s секунди"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Почеток"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Премин на базата "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2275,42 +2308,42 @@ msgstr ""
msgid "Structure"
msgstr "Структура"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Нов запис"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Операции"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "директориум за праќање на веб серверот "
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Директориумот кој го избравте за праќање не е достапен"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2668,7 +2701,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4644,7 +4677,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Привилегии"
@@ -4656,7 +4689,7 @@ msgstr "Рутини"
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4863,9 +4896,9 @@ msgstr "Кодна страна на податотеката:"
msgid "Compression:"
msgstr "Компресија"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "нема"
@@ -5000,39 +5033,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Додади/избриши колона"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr " записи почнувајќи од записот"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "хоризонтален"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "хоризонтален (ротирани заглавија)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "вертикален"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "во %s мод и повторувај заглавие после %s записа"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Подредување по клуч"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5045,103 +5096,103 @@ msgstr "Подредување по клуч"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Операции"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Дел на текстот"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Полн текст"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Релациона шема"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Релациона шема"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Транформации на веб прелистувачот"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Копирај"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Записот е избришан"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Прекини"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "во упитот"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Приказ на записи од "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "вкупно"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "време на извршување на упитот %01.4f секунди"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Промени"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Преглед за печатење (целосен текст)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Прикажи PDF шема"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Верзија на серверот"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Врската не е пронајдена"
@@ -5191,7 +5242,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Бафер"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -5679,7 +5730,7 @@ msgstr "Достапни MIME-типови"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5890,7 +5941,7 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерирал"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL врати празен резултат (нула записи)."
@@ -6052,7 +6103,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Додади ново поле"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Нема измени"
@@ -6381,14 +6432,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Променлива"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Вредност"
@@ -6628,20 +6679,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Бинарен дневник"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Променливи"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Кодни страници"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Складишта"
@@ -6691,11 +6742,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имиња на колони"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Запамти SQL упит"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "дади дозвола на секој корисник да пристапува на овој упит."
@@ -6931,7 +6982,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Додади нов корисник"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Време"
@@ -7166,7 +7217,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Корисник"
@@ -7443,7 +7494,7 @@ msgstr "Креирај"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Оператор"
@@ -7633,18 +7684,18 @@ msgstr "Табелата \"%s\" не постои!"
msgid "Select binary log to view"
msgstr "Изберете бинарен дневник за преглед"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Полиња"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Прикажи скратени упити"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Прикажи комплетни упити"
@@ -8187,7 +8238,7 @@ msgstr "Привилегиите се успешно вчитани."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8326,269 +8377,252 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Освежи"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "се користи"
+msgstr[1] "се користи"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "во секунда"
+msgstr[1] "во секунда"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процесот %s е успешно прекинат."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Вид на упит"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Користи одложен внес"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Прикажи табели"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Информации за работата"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Избор на сервер"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Статистики за записите"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Освежи"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "во секунда"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "во секунда"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "се користи"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Немој да ја менуваш лозинката"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Прикажи табели"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Релации"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "на час"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "во минута"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "во секунда"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Вид на упит"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Овој MySQL сервер работи %s. Стартуван е на %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Сообраќај"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Примено"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Пратено"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Конекции"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Неуспешни обиди"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Прекинато"
-#: server_status.php:778
-#, fuzzy
-msgid "Processes"
-msgstr "Листа на процеси"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
"еден час."
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8596,78 +8630,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8675,7 +8709,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8683,42 +8717,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8726,33 +8760,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8761,227 +8795,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8989,99 +9023,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9089,18 +9123,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9108,7 +9142,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9231,7 +9265,7 @@ msgstr "Серверски променливи и подесувања"
msgid "Session value"
msgstr "Вредност на сесијата"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Глобална вредност"
@@ -9509,41 +9543,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Прегледни ги надворешните вредности"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирање на табелата `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Назив"
@@ -9932,25 +9966,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Нема селектирани записи"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Направи \"упит по пример\" (џокер знак: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Избери полиња (најмалку едно)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Број на записи на страница"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Редослед на приказ:"
@@ -10252,12 +10286,15 @@ msgstr ""
msgid "Rename view to"
msgstr "Промени го името на табелата во "
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "Theme / Style"
+#~ msgstr "Тема / стил"
+
+#~ msgid "seconds"
+#~ msgstr "во секунда"
+
#~ msgid "Query results"
#~ msgstr "SQL резултат"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Поништи"
@@ -10265,8 +10302,6 @@ msgstr "Промени го името на табелата во "
#~ msgid "Show processes"
#~ msgstr "Прикажи листа на процеси"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Поништи"
@@ -10285,15 +10320,9 @@ msgstr "Промени го името на табелата во "
#~ "Статистики на упити : %s упити се поставени на серверот од времето "
#~ "на неговото стартување."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Привилегиите се успешно вчитани."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -10301,25 +10330,18 @@ msgstr "Промени го името на табелата во "
#~ "Бројот на записи може да биде приближен. За подетални информации види FAQ "
#~ "3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Вид на упит"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Додади нов корисник"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Верзија на серверот"
#~ msgid "Add a new User"
#~ msgstr "Додади нов корисник"
-#, fuzzy
-#~| msgid "Dumping data for table"
#~ msgid "Delete the matches for the "
#~ msgstr "Приказ на податоци од табелата"
diff --git a/po/ml.po b/po/ml.po
index 6c88e90542..8d072d965c 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,7 +5,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malayalam \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.7.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -36,23 +36,23 @@ msgid ""
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr ""
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -69,7 +69,7 @@ msgstr ""
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -82,7 +82,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr ""
@@ -133,7 +133,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr ""
@@ -146,7 +146,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr ""
@@ -162,7 +162,7 @@ msgstr ""
msgid "Null"
msgstr ""
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -191,7 +191,7 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -202,12 +202,12 @@ msgstr ""
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr ""
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -222,7 +222,7 @@ msgstr ""
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -241,11 +241,11 @@ msgstr ""
msgid "No tables found in database."
msgstr ""
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr ""
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr ""
@@ -267,7 +267,7 @@ msgstr ""
msgid "Rename database to"
msgstr ""
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr ""
@@ -328,7 +328,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -351,7 +351,7 @@ msgstr ""
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr ""
@@ -367,7 +367,7 @@ msgstr ""
msgid "Size"
msgstr ""
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr ""
@@ -393,7 +393,7 @@ msgstr ""
msgid "Last check"
msgstr ""
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -413,25 +413,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr ""
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr ""
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr ""
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr ""
@@ -454,7 +454,7 @@ msgstr ""
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr ""
@@ -483,58 +483,58 @@ msgstr ""
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr ""
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr ""
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr ""
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr ""
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr ""
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr ""
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr ""
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -545,171 +545,171 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr ""
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr ""
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr ""
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr ""
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr ""
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr ""
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr ""
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr ""
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr ""
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr ""
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr ""
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -724,9 +724,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr ""
@@ -742,8 +742,8 @@ msgstr ""
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr ""
@@ -877,7 +877,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -900,7 +900,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -926,15 +926,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1022,152 +1022,188 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-msgid "Live traffic chart"
-msgstr ""
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-msgid "Live query chart"
-msgstr ""
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr ""
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ""
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ""
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr ""
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr ""
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr ""
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr ""
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr ""
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr ""
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr ""
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr ""
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr ""
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr ""
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr ""
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr ""
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr ""
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr ""
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr ""
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr ""
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr ""
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ""
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ""
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+msgid "Server traffic (in KiB)"
+msgstr ""
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr ""
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr ""
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr ""
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr ""
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr ""
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr ""
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr ""
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr ""
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr ""
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr ""
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr ""
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr ""
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr ""
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr ""
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr ""
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr ""
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr ""
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1175,67 +1211,67 @@ msgstr ""
msgid "Save"
msgstr ""
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr ""
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr ""
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr ""
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1243,258 +1279,258 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr ""
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr ""
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr ""
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr ""
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr ""
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr ""
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr ""
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr ""
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr ""
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr ""
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr ""
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr ""
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr ""
@@ -1583,7 +1619,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr ""
@@ -1647,25 +1683,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr ""
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1697,9 +1733,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1708,7 +1743,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr ""
@@ -1851,7 +1885,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr ""
@@ -1927,7 +1961,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr ""
@@ -1975,7 +2008,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr ""
@@ -1983,119 +2016,119 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2107,41 +2140,41 @@ msgstr ""
msgid "Structure"
msgstr ""
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr ""
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr ""
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2482,7 +2515,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4355,7 +4388,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr ""
@@ -4367,7 +4400,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4545,9 +4578,9 @@ msgstr ""
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr ""
@@ -4666,37 +4699,53 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr ""
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4709,92 +4758,92 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr ""
@@ -4838,7 +4887,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5279,7 +5328,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr ""
@@ -5479,7 +5528,7 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -5630,7 +5679,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr ""
@@ -5955,14 +6004,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr ""
@@ -6184,20 +6233,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6242,11 +6291,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6444,7 +6493,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr ""
@@ -6597,7 +6646,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr ""
@@ -6837,7 +6886,7 @@ msgstr ""
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7008,17 +7057,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr ""
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7521,7 +7570,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7654,245 +7703,234 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr ""
+
+#: server_status.php:31
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: server_status.php:33
+#, php-format
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] ""
+msgstr[1] ""
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr ""
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr ""
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr ""
-#: server_status.php:367
+#: server_status.php:400
msgid "Server traffic"
msgstr ""
-#: server_status.php:368
-msgid "Query statistics"
-msgstr ""
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-msgid "Refresh rate"
-msgstr ""
-
-#: server_status.php:380 server_status.php:411
-msgid "second"
-msgstr ""
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-msgid "seconds"
-msgstr ""
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-msgid "minutes"
-msgstr ""
-
-#: server_status.php:440
+#: server_status.php:455
msgid "Containing the word:"
msgstr ""
-#: server_status.php:445
+#: server_status.php:460
msgid "Show only alert values"
msgstr ""
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
msgid "Related links:"
msgstr ""
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -7900,78 +7938,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -7979,7 +8017,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -7987,42 +8025,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8030,33 +8068,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8065,227 +8103,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8293,99 +8331,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8393,18 +8431,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8412,7 +8450,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8533,7 +8571,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -8805,39 +8843,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr ""
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9195,23 +9233,23 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr ""
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr ""
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 6def5c5d57..6276f9966a 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Бүгдийг харах"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -36,23 +36,23 @@ msgstr ""
"Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл "
"таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Хайх"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -69,7 +69,7 @@ msgstr "Хайх"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -82,7 +82,7 @@ msgstr "Түлхүүрийн нэр"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Тайлбар"
@@ -133,7 +133,7 @@ msgstr "Хүснэгтийн тайлбар"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -148,7 +148,7 @@ msgstr "Баганын нэрс"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Төрөл"
@@ -164,7 +164,7 @@ msgstr "Төрөл"
msgid "Null"
msgstr "Хоосон"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -193,7 +193,7 @@ msgstr "Холбоос"
msgid "Comments"
msgstr "Тайлбар"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -204,12 +204,12 @@ msgstr "Тайлбар"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Үгүй"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -224,7 +224,7 @@ msgstr "Үгүй"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -243,11 +243,11 @@ msgstr "ӨС-ийн схем харах"
msgid "No tables found in database."
msgstr "ӨС-д хүснэгт олдсонгүй."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Бүгдийг сонгох"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Бүх сонгосныг болих"
@@ -269,7 +269,7 @@ msgstr "ӨС %s нь %s руу хуулагдлаа"
msgid "Rename database to"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Команд"
@@ -334,7 +334,7 @@ msgstr "Хуулагдсан ӨС руу шилжих"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -364,7 +364,7 @@ msgstr "Хамааралтай схем"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Хүснэгт "
@@ -380,7 +380,7 @@ msgstr "Мөрүүд"
msgid "Size"
msgstr "Хэмжээ"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "хэрэглэгдэж байна"
@@ -406,7 +406,7 @@ msgstr "Сүүлийн шинэчлэл"
msgid "Last check"
msgstr "Сүүлийн шалгалт"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -427,25 +427,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Эрэмбэлэх"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Өсөхөөр"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Буурахаар"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Харах"
@@ -468,7 +468,7 @@ msgstr "Устгах"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Эсвэл"
@@ -501,39 +501,39 @@ msgstr "Хүснэгт хэрэглэх"
msgid "SQL query on database %s :"
msgstr "ӨС %s дахь SQL-асуулт:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Асуултыг илгээх"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Хандах эрхгүй"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "Үгүүдийн ядаж нэгээр"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "бүх үг"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "яг цав өгүүлбэр"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "as regular expression"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Хайлтын үр дүн \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -541,20 +541,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s олдоц(ууд) хүснэгт %s -д"
msgstr[1] "%s олдоц(ууд) хүснэгт %s -д"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Хөтлөх"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Хүснэгтийн өгөгдлийг устгах"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -565,7 +565,7 @@ msgstr "Хүснэгтийн өгөгдлийг устгах"
msgid "Delete"
msgstr "Устгах"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -573,172 +573,172 @@ msgid_plural "Total: %s matches"
msgstr[0] "Нийт: %s олдоц(ууд)"
msgstr[1] "Нийт: %s олдоц(ууд)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Өгөгдлийн санд хайх"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Хайх:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Хүснэгт(үүд) дотор:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Хүснэгт(үүд) дотор:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "ӨС-д хүснэгт олдсонгүй."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Хүснэгт %s нь хоослогдлоо"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Харц %s нь устгагдсан"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Хүснэгт %s нь устгагдлаа"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Харц"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Олшруулалт"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Нийт"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Сонгогдсонтой:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Бүгдийг чагтлах"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Бүх чагтыг болих"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Дээдхийг шалгах"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Гаргах"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Хэвлэхээр харах"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Хоосон"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Устгах"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Хүснэгт шалгах"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Хүснэгтийг зүгшрүүлэх"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Хүснэгт засах"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Хүснэгтийг задлах"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Хүснэгтийн өгөгдлийг орлуулах файл"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Хүснэгтийн өгөгдлийг орлуулах файл"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Өгөгдлийн толь"
@@ -753,9 +753,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "ӨС"
@@ -771,8 +771,8 @@ msgstr ""
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Статус"
@@ -907,7 +907,7 @@ msgstr "Тэмдэглэгээ устгагдсан."
msgid "Showing bookmark"
msgstr "Тэмдэглэл харуулах"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Тэмдэглэл %s нь үүсгэгдлээ"
@@ -930,7 +930,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -956,15 +956,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"ӨС устгах\" нь хаалттай."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Та үнэхээр "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?"
@@ -1068,188 +1068,230 @@ msgstr "Сонгогдсон хэрэглэгчдийг хасах"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Сервэр сонго"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Live query chart"
-msgstr "SQL асуудал харуулах"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Нийт"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Процессууд"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Өгөгдлийн санг д.нэрлэх нь"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Өгөгдлийн санг д.нэрлэх нь"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Өгөгдлийн сан хуулах нь"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Кодлол"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй."
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Хүснэгт үүсгэх"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Хүснэгт хэрэглэх"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Хайх"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "in query"
-msgid "Hide search results"
-msgstr "асуултад"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Show search results"
-msgstr "SQL асуудал харуулах"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Хөтлөх"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "%s-г устгаж байна"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "in query"
-msgid "Hide query box"
-msgstr "асуултад"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "Showing SQL query"
-msgid "Show query box"
-msgstr "SQL асуудал харуулах"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Хөдөлгүүрүүд"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Засах"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Сервэр сонго"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Live query chart"
+msgstr "SQL асуудал харуулах"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Нийт"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Сервэр сонго"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Процессууд"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Холболт"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Databases statistics"
+msgid "Query statistics"
+msgstr "Өгөгдлийн сангийн статистик"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Процессууд"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Өгөгдлийн санг д.нэрлэх нь"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Өгөгдлийн санг д.нэрлэх нь"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Өгөгдлийн сан хуулах нь"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Кодлол"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "Table must have at least one field."
+msgid "Table must have at least one column"
+msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй."
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Хүснэгт үүсгэх"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Хүснэгт хэрэглэх"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Хайх"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "in query"
+msgid "Hide search results"
+msgstr "асуултад"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Show search results"
+msgstr "SQL асуудал харуулах"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Хөтлөх"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "%s-г устгаж байна"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "in query"
+msgid "Hide query box"
+msgstr "асуултад"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "Showing SQL query"
+msgid "Show query box"
+msgstr "SQL асуудал харуулах"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Хөдөлгүүрүүд"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1257,79 +1299,79 @@ msgstr "Засах"
msgid "Save"
msgstr "Хадгалах"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Нуух"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "асуултад"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search criteria"
msgstr "SQL асуудал харуулах"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Үл тоох"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Хамаарагдсан түлхүүр сонгох"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Гадаад түлхүүр сонгох"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Харуулах талбарыг соль"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Нууц үг бий болгох"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Бий болгох"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Нууц үг солих"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Да"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1337,129 +1379,129 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "ӨС байхгүй"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Байхгүй"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Өмнөх"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Цааш"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Нийт"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Хоёртын "
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "3-р"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "4-р"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "5-р"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "6-р"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "7-р"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "8-р"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "10р"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1467,176 +1509,176 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "12р"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ня"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Да"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Мя"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ба"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Бя"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ня"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Да"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Мя"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Лх"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пү"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ба"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Бя"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "хэрэглэгдэж байна"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1727,7 +1769,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
@@ -1797,25 +1839,25 @@ msgstr "%s нь уг MySQL сервэр дээр хаалттай байна."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Буруу өгөгдлийн сан"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Хүснэгтийн буруу нэр"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1847,10 +1889,9 @@ msgstr "Сэдэв %s олдсонгүй!"
msgid "Theme path not found for theme %s!"
msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Арьс / Загвар"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1858,7 +1899,6 @@ msgstr "Холбогдсонгүй: тохируулга буруу."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s-д тавтай морилно уу"
@@ -2007,7 +2047,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Хүснэгт"
@@ -2095,7 +2135,6 @@ msgstr "%1$s сервэрийн хост буруу. Өөрийн тохирго
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сервэр"
@@ -2143,7 +2182,7 @@ msgid "Documentation"
msgstr "Баримт"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-асуулт"
@@ -2151,121 +2190,121 @@ msgstr "SQL-асуулт"
msgid "MySQL said: "
msgstr "MySQL хэлэх нь: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL тайлбар"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL тайлбарлахыг орхих"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP-кодгүй"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP-код үүсгэх"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Да.дуудах"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL шалгалтыг алгасах"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL-ийг батлах"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Хөдөлгүүрүүд"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Байт"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "кБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y оны %B сарын %d., %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s өдөр, %s цаг, %s минут, %s секунд"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Эхлэл"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Өмнөх"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Төгс"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" өгөгдлийн сан руу үсрэх."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2277,42 +2316,42 @@ msgstr ""
msgid "Structure"
msgstr "Бүтэц"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Оруулах"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Үйлдлүүд"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web-сервэр түлхэх хавтас"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2669,7 +2708,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4624,7 +4663,7 @@ msgstr "Дизайнч"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Онцгой эрхүүд"
@@ -4636,7 +4675,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4848,9 +4887,9 @@ msgstr "Файлын кодлол:"
msgid "Compression:"
msgstr "Шахалт"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Байхгүй"
@@ -4997,39 +5036,57 @@ msgstr ""
msgid "Language"
msgstr "Хэл"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Багана нэмэх/устгах"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d нь мөрийн буруу дугаар байна."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "мөрийн эхлэх буй дугаар"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "хөндлөн"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "босоо"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "Төлөв %s-д ба %s нїдний дараа толгойнуудыг давтах"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Түлхүүрээр эрэмбэлэх"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5042,102 +5099,102 @@ msgstr "Түлхүүрээр эрэмбэлэх"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Сонголтууд"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Бичвэрийн зарим хэсэг"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Бүтэн бичвэр"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Хамааралтай схем"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Хөтчийн өөрчлөл"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Хуулах"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Мөр устгагдсан"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Алах"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "асуултад"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Мөрүүдийг харуулж байна "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "Нийт"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Асуулт нь %01.4f сек авлаа"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Солих"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-схем харуулах"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Үүсгэх"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Холбоос олдсонгүй"
@@ -5185,7 +5242,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буффер Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB байдал"
@@ -5669,7 +5726,7 @@ msgstr "Идэвхтэй MIME-төрлүүд"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Хост"
@@ -5878,7 +5935,7 @@ msgstr "SQL-үр дүн"
msgid "Generated by"
msgstr "Үүсгэгч"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)."
@@ -6040,7 +6097,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Шинэ талбар нэмэх"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Солигдохгүй"
@@ -6368,14 +6425,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Хувьсагч"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Утга"
@@ -6615,20 +6672,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Хоёртын log"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Утгууд"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Кодлолууд"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Хөдөлгүүрүүд"
@@ -6675,11 +6732,11 @@ msgstr ""
msgid "Columns"
msgstr "Баганын нэрс"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
@@ -6915,7 +6972,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Шинэ хэрэглэгч нэмэх"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Цаг"
@@ -7137,7 +7194,7 @@ msgid "Protocol version"
msgstr "Протоколын хувилбар"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Хэрэглэгч"
@@ -7413,7 +7470,7 @@ msgstr "Үүсгэх"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Оператор"
@@ -7602,17 +7659,17 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!"
msgid "Select binary log to view"
msgstr "Харах хоёртын log сонго"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Файлууд"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Бүтэн асуулт харуулах"
@@ -8139,7 +8196,7 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8276,250 +8333,233 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Да.дуудах"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "хэрэглэгдэж байна"
+msgstr[1] "хэрэглэгдэж байна"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "секундэд"
+msgstr[1] "секундэд"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s нь устгагдав."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Баригч"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Асуудлын нөөцлөл"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Thread-үүд"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Завсрын өгөгдөл"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Давталттай оруулалт"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Түлхүүрийн нөөцлөл"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Нэгдэл"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Эрэмбэлж байна"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Хэлэлцээр зохицуулагч"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Дагавар хостыг харуулах"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Дагавар төлвийг харуулах"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Асуудлын утгыг цэвэрлэх"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Ажиллах үеийн мэдээлэл"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Сервэр сонго"
-#: server_status.php:368
-#, fuzzy
-#| msgid "Databases statistics"
-msgid "Query statistics"
-msgstr "Өгөгдлийн сангийн статистик"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Да.дуудах"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "секундэд"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "секундэд"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "хэрэглэгдэж байна"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Нууц үгийг солихгүй"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Хамаарал"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "цагт"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "минутад"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "секундэд"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Асуултын төрөл"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Гуйвуулга"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Ирсэн"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Илгээгдэв"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Холболт"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "ХИ. давхацсан холболтууд"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Бүтэлгүйтсэн оролдлого"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Таслагдсан"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Процессууд"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8529,16 +8569,16 @@ msgstr ""
"хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд "
"хэрэглэгдэх хэлэлцээрийн тоо."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8550,11 +8590,11 @@ msgstr ""
"оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг "
"нэмэгдүүлэхийг хүсэж байж болно."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8562,7 +8602,7 @@ msgstr ""
"Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн "
"хүснэгтүүдийн тоо."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8570,7 +8610,7 @@ msgstr ""
"Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-"
"аар бичигдсэн мөрүүдийн тоо."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8578,23 +8618,23 @@ msgstr ""
"Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай "
"хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ."
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "дотоод COMMIT хэлэлцээриийн тоо."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Хүснэгтээс мөр устгасан тоо."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8604,7 +8644,7 @@ msgstr ""
"NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. "
"Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8614,7 +8654,7 @@ msgstr ""
"бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 "
"FROM foo, энд col1 индекслэгдсэн байна."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8622,7 +8662,7 @@ msgstr ""
"Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны "
"асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8632,7 +8672,7 @@ msgstr ""
"та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд "
"нэмэгдэж байдаг."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8640,7 +8680,7 @@ msgstr ""
"Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь "
"голчлон ORDER BY ... DESC-д хэрэглэгддэг."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8652,7 +8692,7 @@ msgstr ""
"Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд "
"түлхүүрийг зөв ашиглаагүй байх."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8664,35 +8704,35 @@ msgstr ""
"ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь "
"асуудалд зөв бичигдээгүйг илтгэнэ."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Одоогоор бохир байгаа хуудсын тоо."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Чөлөөтэй байгаа хуудсуудын тоо."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8702,7 +8742,7 @@ msgstr ""
"одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас "
"хасагдсан."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8714,11 +8754,11 @@ msgstr ""
"InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт "
"хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8726,7 +8766,7 @@ msgstr ""
"InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй "
"эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8734,11 +8774,11 @@ msgstr ""
"InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн "
"шалгалтыг InnoDB хийснийг илэрхийлнэ."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8746,7 +8786,7 @@ msgstr ""
"InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик "
"уншилтын тоо."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8755,227 +8795,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Уншихаар хүлээгдэж буй тухайн тоо."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Бичихээр хүлээгдэж буй тухайн тоо."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Өгөгдөл уншилтийн нийт тоо."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Өгөгдөл бичилтийн нийт тоо."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Тэмдэглэл бичих хүсэлтийн тоо."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Тэмдэглэлийн файл руу бичих хүлээлт."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8983,99 +9023,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Эрэмбэлэгдсэн мөрийн тоо."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9083,18 +9123,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9102,7 +9142,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9225,7 +9265,7 @@ msgstr "Сервэрийн утгууд болон тохиргоонууд"
msgid "Session value"
msgstr "Сессон утга"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Глобал утга"
@@ -9499,41 +9539,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP кодоор харуулах"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "SQL асуудал харуулах"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL-ийг батлах"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Хүснэгт `%s`-ийн индекс асуудалтай"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Хаяг"
@@ -9918,25 +9958,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Сонгогдсон мөргүй"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Талбар сонгох (ядаж нэгийг):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Хуудас дахь мөрийн тоо"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Харуулах эрэмбэ:"
@@ -10233,6 +10273,14 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#~ msgid "Theme / Style"
+#~ msgstr "Арьс / Загвар"
+
+#, fuzzy
+#~| msgid "per second"
+#~ msgid "seconds"
+#~ msgstr "секундэд"
+
#, fuzzy
#~| msgid "Query results operations"
#~ msgid "Query results"
diff --git a/po/ms.po b/po/ms.po
index 7c5938f6fb..fd74f0cca0 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Papar semua"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -34,23 +34,23 @@ msgid ""
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Cari"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -67,7 +67,7 @@ msgstr "Cari"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -80,7 +80,7 @@ msgstr "Nama Kekunci"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Keterangan"
@@ -100,7 +100,7 @@ msgstr ""
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Gagal untuk membuka URL "
#: changelog.php:32 license.php:28
#, php-format
@@ -108,6 +108,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"Fail %s tidak ada di dalam sistem, sila ke laman sesawang www.phpmyadmin.net "
+"untuk maklumat lanjut"
#: db_create.php:58
#, fuzzy, php-format
@@ -132,7 +134,7 @@ msgstr "Komen jadual"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -147,7 +149,7 @@ msgstr "Nama Kolum"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Jenis"
@@ -163,7 +165,7 @@ msgstr "Jenis"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -192,7 +194,7 @@ msgstr "Pautan ke"
msgid "Comments"
msgstr "Komen"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -203,12 +205,12 @@ msgstr "Komen"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -223,7 +225,7 @@ msgstr "Tidak"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -242,11 +244,11 @@ msgstr "Lihat longgokan (skema) pangkalan data"
msgid "No tables found in database."
msgstr "Tiada jadual dijumpai pada pangkalan data."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Sila pilih pangkalan data"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Nyahpilih Semua"
@@ -270,7 +272,7 @@ msgstr "Jadual %s telah disalin ke %s."
msgid "Rename database to"
msgstr "Tukarnama jadual ke"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Arahan"
@@ -315,7 +317,7 @@ msgstr ""
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
-msgstr ""
+msgstr "Tambah %s"
#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
@@ -328,13 +330,13 @@ msgstr ""
#: db_operations.php:528
msgid "Switch to copied database"
-msgstr ""
+msgstr "Tukar kepada pengkalan data yang di salin"
#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -364,7 +366,7 @@ msgstr "Skema Hubungan"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Jadual"
@@ -380,7 +382,7 @@ msgstr "Baris"
msgid "Size"
msgstr "Saiz"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "sedang digunakan"
@@ -405,9 +407,9 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
#: tbl_structure.php:919
msgid "Last check"
-msgstr ""
+msgstr "Semakan Terakhir"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -428,25 +430,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Isih"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Menaik"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Menurun"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Papar"
@@ -469,7 +471,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Atau"
@@ -502,39 +504,39 @@ msgstr "Guna Jadual"
msgid "SQL query on database %s :"
msgstr "SQL- kueri pada pangkalan data %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Hantar Kueri"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Akses dinafikan"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "sekurang-kurangnya satu perkataan"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "semua perkataan"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "Frasa tepat"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "sebagai penyataan regular (regexp)"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Hasil carian bagi \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -542,20 +544,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s padanan di dalam jadual %s "
msgstr[1] "%s padanan di dalam jadual %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Lungsur"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Melonggok data bagi jadual"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -566,7 +568,7 @@ msgstr "Melonggok data bagi jadual"
msgid "Delete"
msgstr "Padam"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -574,172 +576,172 @@ msgid_plural "Total: %s matches"
msgstr[0] "Jumlah : %s padanan"
msgstr[1] "Jumlah : %s padanan"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Cari di pangkalan data"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Cari:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Di dalam jadual:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Di dalam jadual:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Tiada jadual dijumpai pada pangkalan data."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Jadual %s telah dikosongkan"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Medan %s telah digugurkan"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Jadual %s telah digugurkan"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Jumlah"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Dengan pilihan:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Tanda Semua"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Nyahtanda Semua"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Paparan Cetak"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Kosong"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Gugur"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Periksa Jadual"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimakan jadual"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Baiki jadual"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyze table"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Ganti data jadual dengan fail"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Ganti data jadual dengan fail"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Kamus Data"
@@ -754,9 +756,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Pangkalan Data"
@@ -773,8 +775,8 @@ msgstr "Cipta"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -912,7 +914,7 @@ msgstr "TandaBuku telah dipadam."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -935,7 +937,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -963,15 +965,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Adakah anda ingin "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1065,176 +1067,218 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Pilihan Pelayan"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "kueri-SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Jumlah"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Local"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Proses-proses"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-msgid "Renaming Databases"
-msgstr "Tukarnama jadual ke"
-
-#: js/messages.php:92
-#, fuzzy
-msgid "Reload Database"
-msgstr "Tukarnama jadual ke"
-
-#: js/messages.php:93
-#, fuzzy
-msgid "Copying Database"
-msgstr "Tiada pangkalan data"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Cipta Halaman baru"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Guna Jadual"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Cari"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "kueri-SQL"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "kueri-SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Lungsur"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Delete"
-msgid "Deleting"
-msgstr "Padam"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "kueri-SQL"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "kueri-SQL"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Pilihan Pelayan"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "kueri-SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Jumlah"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Pilihan Pelayan"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Proses-proses"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Hubungan"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "kueri-SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Statistik Baris"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Local"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Proses-proses"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+msgid "Renaming Databases"
+msgstr "Tukarnama jadual ke"
+
+#: js/messages.php:105
+#, fuzzy
+msgid "Reload Database"
+msgstr "Tukarnama jadual ke"
+
+#: js/messages.php:106
+#, fuzzy
+msgid "Copying Database"
+msgstr "Tiada pangkalan data"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr ""
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Cipta Halaman baru"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Guna Jadual"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Cari"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "kueri-SQL"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "kueri-SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Lungsur"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Delete"
+msgid "Deleting"
+msgstr "Padam"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "kueri-SQL"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "kueri-SQL"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1242,78 +1286,78 @@ msgstr "Ubah"
msgid "Save"
msgstr "Simpan"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "kueri-SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "kueri-SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Abai"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Dijana oleh"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Isn"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1321,128 +1365,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Tiada pangkalan data"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Tiada"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Terdahulu"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Berikut"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jumlah"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mac"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mei"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ogos"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1450,176 +1494,176 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dis"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Aha"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Isn"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sel"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Aha"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Isn"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sel"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Rab"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Kha"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "sedang digunakan"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -1711,7 +1755,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "pangkalan data"
@@ -1776,25 +1820,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Jadual %s telah ditukarnama ke %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1826,9 +1870,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1837,7 +1880,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Selamat Datang ke %s"
@@ -1981,7 +2023,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Jadual-jadual"
@@ -2065,7 +2107,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Pelayan"
@@ -2113,7 +2154,7 @@ msgid "Documentation"
msgstr "Dokumentasi"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "kueri-SQL"
@@ -2121,119 +2162,119 @@ msgstr "kueri-SQL"
msgid "MySQL said: "
msgstr "MySQL berkata: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Terangkan Kod SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Tanpa Kod PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Cipta Kod PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Melangkau Pengesahan SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Mengesahkan SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s minit dan %s saat"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Mula"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Terdahulu"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Tamat"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2245,42 +2286,42 @@ msgstr ""
msgid "Structure"
msgstr "Struktur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Selit"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operasi"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "direktori muatnaik pelayan-web"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2637,7 +2678,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4586,7 +4627,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilej"
@@ -4598,7 +4639,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4800,9 +4841,9 @@ msgstr "Fail bagi set Aksara:"
msgid "Compression:"
msgstr "Mampatan"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Tiada"
@@ -4935,39 +4976,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Tambah/Padam Kolum Medan"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "baris bermula dari rekod #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "mengufuk"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "menegak"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "pada mod %s dan ulang pengepala selepas %s sel"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4980,103 +5039,103 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Operasi"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Sebahagian Teks"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Teks Penuh"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Skema Hubungan"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Skema Hubungan"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Baris telah dipadam"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Bunuh"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "pada kueri"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Papar baris"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ubah"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Papar Skema PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Versi Pelayan"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Pautan tidak dijumpai"
@@ -5122,7 +5181,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5583,7 +5642,7 @@ msgstr "Paparkan Ciri-ciri"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Hos"
@@ -5790,7 +5849,7 @@ msgstr "Hasil SQL"
msgid "Generated by"
msgstr "Dijana oleh"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)"
@@ -5948,7 +6007,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Tiada perubahan"
@@ -6274,14 +6333,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Pembolehubah"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Nilai"
@@ -6518,21 +6577,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr "Binari"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Pemboleh-pembolehubah"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6581,11 +6640,11 @@ msgstr ""
msgid "Columns"
msgstr "Nama Kolum"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "andabuku kueri-SQL ini"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6817,7 +6876,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Tambah Pengguna Baru"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Masa"
@@ -6979,7 +7038,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Pengguna"
@@ -7250,7 +7309,7 @@ msgstr "Cipta"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "Operasi"
@@ -7434,18 +7493,18 @@ msgstr "Jadual \"%s\" tidak wujud!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Medan"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7966,7 +8025,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8105,264 +8164,248 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+msgid "Refresh rate"
+msgstr "Dijana oleh"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "sedang digunakan"
+msgstr[1] "sedang digunakan"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Records"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Rekod"
+msgstr[1] "Rekod"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Bebenang %s telah berjaya dimatikan."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Jenis Kueri"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Penyelitan Lanjutan"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Papar jadual"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informasi MasaJana"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Pilihan Pelayan"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Statistik Baris"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-msgid "Refresh rate"
-msgstr "Dijana oleh"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Records"
-msgid "second"
-msgstr "Rekod"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Records"
-msgid "seconds"
-msgstr "Rekod"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "sedang digunakan"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Jangan tukar katalaluan"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Papar jadual"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
msgid "Related links:"
msgstr "Operasi"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per jam"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Jenis Kueri"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Kesibukan"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "DiTerima"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Hantar"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Hubungan"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Percubaan Gagal"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "DiBatalkan"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Proses-proses"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8370,78 +8413,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8449,7 +8492,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8457,42 +8500,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8500,33 +8543,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8535,227 +8578,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8763,99 +8806,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8863,18 +8906,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8882,7 +8925,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9005,7 +9048,7 @@ msgstr "Pembolehubah dan Penetapan Pelayan"
msgid "Session value"
msgstr "Nilai Sessi"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Nilai Global"
@@ -9283,41 +9326,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Mengesahkan SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Label"
@@ -9698,25 +9741,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Pilih medan (sekurang-kurangnya satu):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Bilangan baris per halaman"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Turutan paparan:"
@@ -10008,12 +10051,12 @@ msgstr ""
msgid "Rename view to"
msgstr "Tukarnama jadual ke"
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "seconds"
+#~ msgstr "Rekod"
+
#~ msgid "Query results"
#~ msgstr "Hasil SQL"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Ulangtetap"
@@ -10021,8 +10064,6 @@ msgstr "Tukarnama jadual ke"
#~ msgid "Show processes"
#~ msgstr "Papar proses"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Ulangtetap"
@@ -10041,22 +10082,15 @@ msgstr "Tukarnama jadual ke"
#~ "Kueri Statistik : Sejak ia dijalankan, %s kueri telah dihantar "
#~ "kepada pelayan."
-#, fuzzy
-#~| msgid "Thread %s was successfully killed."
#~ msgid "Chart generated successfully."
#~ msgstr "Bebenang %s telah berjaya dimatikan."
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Jenis Kueri"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Tambah Pengguna Baru"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Versi Pelayan"
diff --git a/po/nb.po b/po/nb.po
index 12a8b909dd..c04a2297b4 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"Målvinduet kunne ikke oppdateres. Muligens du har lukket modervinduet eller "
"din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Søk"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "Søk"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Nøkkel"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Beskrivelse"
@@ -136,7 +136,7 @@ msgstr "Tabellkommentarer"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolonne"
@@ -149,7 +149,7 @@ msgstr "Kolonne"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -165,7 +165,7 @@ msgstr "Type"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "Kommentarer"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nei"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "Nei"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "Vis dump (skjema) av database"
msgid "No tables found in database."
msgstr "Ingen tabeller i databasen."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Velg alle"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Fjern alle valgte"
@@ -270,7 +270,7 @@ msgstr "Databasen %s har blitt kopiert til %s"
msgid "Rename database to"
msgstr "Endre databasens navn til"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Kommando"
@@ -331,7 +331,7 @@ msgstr "Bytt til kopiert database"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -355,7 +355,7 @@ msgstr "Rediger eller eksporter relasjonsskjema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabell"
@@ -371,7 +371,7 @@ msgstr "Rader"
msgid "Size"
msgstr "Størrelse"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "i bruk"
@@ -397,7 +397,7 @@ msgstr "Sist oppdatert"
msgid "Last check"
msgstr "Sist kontrollert"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -417,25 +417,25 @@ msgid "visual builder"
msgstr "visuell bygger"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sorter"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Stigende"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Synkende"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Vis"
@@ -458,7 +458,7 @@ msgstr "Slett"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Eller"
@@ -487,58 +487,58 @@ msgstr "Bruk tabeller"
msgid "SQL query on database %s :"
msgstr "SQL-spørring i database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Kjør spørring"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ingen tilgang"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "minst ett av ordene"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "alle ordene"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "med den nøyaktige setningen"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "som \"regular expression\""
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Søkeresultat for \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s treff i tabell %s "
msgstr[1] "%s treff i tabell %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Se på"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Slett treffene for %s tabellen?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -549,177 +549,177 @@ msgstr "Slett treffene for %s tabellen?"
msgid "Delete"
msgstr "Slett"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Totalt: %s treff"
msgstr[1] "Totalt: %s treff"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Søk i database"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Ord eller verdi(er) å søke etter (jokertegn: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Finn:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Ord er separert med et mellomrom (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "I tabell(ene):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "I kolonne:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Ingen tabeller funnet i databasen"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabellen %s har blitt tømt"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Visningen %s har blitt slettet"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabellen %s har blitt slettet"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Overvåkning er aktiv."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Overvåkning er ikke aktiv."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"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:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vis"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikering"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard lagringsmotor for denne MySQL tjeneren."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med avkrysset:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Merk alle"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Fjern merking"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Merk overheng"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksporter"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Utskriftsvennlig forhåndsvisning"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Tøm"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Slett"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Kontroller tabell"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimiser tabell"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparer tabell"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyser tabell"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Gå til tabell"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Erstatt tabell med filen"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Erstatt tabell med filen"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dataordbok"
@@ -734,9 +734,9 @@ msgstr "Overvåkede tabeller"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Database"
@@ -752,8 +752,8 @@ msgstr "Opprettet"
msgid "Updated"
msgstr "Oppdatert"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -898,7 +898,7 @@ msgstr "Bokmerket har blitt slettet."
msgid "Showing bookmark"
msgstr "Vis bokmerke"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmerke %s opprettet"
@@ -926,7 +926,7 @@ msgstr ""
"øker php tidsgrensen."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -952,15 +952,15 @@ msgstr "Klikk for å velge"
msgid "Click to unselect"
msgstr "Klikk for å fjerne valg"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\"-uttrykk er avslått."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Vil du virkelig "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Du er i ferd med å SLETTE en komplett database!"
@@ -1057,166 +1057,208 @@ msgstr "Fjern valgte brukere"
msgid "Close"
msgstr "Lukk"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Tjenervalg"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query box"
-msgid "Live query chart"
-msgstr "Vis spørringsboks"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Totalt"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Laster"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Prosessforespørsel"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Feil i prosesseringsforespørsel"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Dropper kolonne"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Legger til primærnøkkel"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Endrer databasenes navn"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Gjennlast database"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Kopierer database"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Endrer tegnsett"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Tabellen må ha minst en kolonne"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Opprett tabell"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Bruk tabeller"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Søker"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Skjul søkekriterier"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Vis søkekriterier"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Se på"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Sletter %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Skjul spørringsboks"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Vis spørringsboks"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Inline Edit"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Rediger"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Tjenervalg"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query box"
+msgid "Live query chart"
+msgstr "Vis spørringsboks"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Totalt"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Tjenervalg"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Prosesser"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "tilkoblinger"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL spørringer"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Spørringsstatistikk"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Laster"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Prosessforespørsel"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Feil i prosesseringsforespørsel"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Dropper kolonne"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Legger til primærnøkkel"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Endrer databasenes navn"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Gjennlast database"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopierer database"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Endrer tegnsett"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabellen må ha minst en kolonne"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Opprett tabell"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Bruk tabeller"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Søker"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Skjul søkekriterier"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "Vis søkekriterier"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Se på"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Sletter %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Skjul spørringsboks"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Vis spørringsboks"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Inline Edit"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1224,67 +1266,67 @@ msgstr "Rediger"
msgid "Save"
msgstr "Lagre"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skjul"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Skjul søkekriterier"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Vis søkekriterier"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Velg referert nøkkel"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Velg fremmednøkkel"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Velg primærnøkkelen eller en unik nøkkel"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Velg kolonne for visning"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Legg til valg for kolonne"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Generer passord"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generer"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Endre passord"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Mer"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1294,260 +1336,260 @@ msgstr ""
"versjon er %s, utgitt den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", siste tilgjengelige versjon:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Gå til database"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Utført"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Neste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "I dag"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Januar"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Februar"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Mars"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "April"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Juni"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Juli"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "August"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "September"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Oktober"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "November"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Des"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Søndag"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Mandag"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Tirsdag"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Lør"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Søndag"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Man"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Tir"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Tor"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Uke"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Time"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minutt"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekund"
@@ -1643,7 +1685,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databaser"
@@ -1714,25 +1756,25 @@ msgstr "%s har blitt dekativert for denne MySQL tjeneren."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Ugylding database"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Ugylding tabellnavn"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabellen %s har fått nytt navn %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1764,10 +1806,9 @@ msgstr "Stilen %s ble ikke funnet!"
msgid "Theme path not found for theme %s!"
msgstr "Stilsti ble ikke funnet for stilen %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Stil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1775,7 +1816,6 @@ msgstr "Kan ikke koble til: ugyldige innstillinger."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -1927,7 +1967,7 @@ msgstr "delt"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabeller"
@@ -2010,7 +2050,6 @@ msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Tjener"
@@ -2058,7 +2097,7 @@ msgid "Documentation"
msgstr "Dokumentasjon"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-spørring"
@@ -2066,119 +2105,119 @@ msgstr "SQL-spørring"
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Kunne ikke koble til SQL validerer!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Forklar SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Ikke forklar SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "uten PHP kode"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Lag PHP kode"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Oppdater"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Ikke teste SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Test SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Inline redigering av denne spørringa"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilering"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B, %Y %H:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dager, %s timer, %s minutter og %s sekunder"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Slutt"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Hopp til databasen "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2190,41 +2229,41 @@ msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s"
msgid "Structure"
msgstr "Struktur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Sett inn"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operasjoner"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Bla gjennom datamaskinen:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Merk fra opplastingskatalogen på vevtjeneren %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Katalogen du anga for opplasting kan ikke nåes"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Det er ingen filer å laste opp"
@@ -2584,7 +2623,7 @@ msgstr "Standard tabellfane"
msgid "Show binary contents as HEX by default"
msgstr "Vis binært innhold som heksadesimal som standard"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Vis binært innhold som HEX"
@@ -4634,7 +4673,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegier"
@@ -4646,7 +4685,7 @@ msgstr "Rutiner"
msgid "Return type"
msgstr "Returtype"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4834,9 +4873,9 @@ msgstr "Filens tegnsett:"
msgid "Compression:"
msgstr "Komprimering:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Ingen"
@@ -4981,37 +5020,57 @@ msgstr ""
msgid "Language"
msgstr "Språk"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "CHAR textarea columns"
+msgid "Restore column order"
+msgstr "CHAR textarea kolonner"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Klikk for å velge"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d er ikke et gyldig radnummer."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "rader fra rad"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "vannrett"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horisontal (roterte overskrifter)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "loddrett"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "i %s modus og gjenta headers etter %s celler"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sorter etter nøkkel"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5024,100 +5083,100 @@ msgstr "Sorter etter nøkkel"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Innstillinger"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Delvis tekst"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Hele strenger"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relasjonsnøkkel"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Relasjonsvisningskolonne"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Vis binært innhold"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Vis BLOB innhold"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Nettvisertransformasjon"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Raden er slettet"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Avslutt"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "i spørring"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Viser rader "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Spørring tok %01.4f sek"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Endre"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Spørringsresultatshandlinger"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Forhåndsvisning (med all tekst)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Vis PDF-skjema"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Opprett bruker"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link ikke funnet"
@@ -5165,7 +5224,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mellomlager"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -5674,7 +5733,7 @@ msgstr "Vis MIME-typer"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Vert"
@@ -5881,7 +5940,7 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Generert av"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6049,7 +6108,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Utfør indeks(er)"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Ingen endring"
@@ -6383,14 +6442,14 @@ msgid "Slave status"
msgstr "Slavestatus"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variabler"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Verdi"
@@ -6624,20 +6683,20 @@ msgid "Synchronize"
msgstr "Synkroniser"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binærlogg"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variabler"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Tegnsett"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motorer"
@@ -6682,11 +6741,11 @@ msgstr "Fjern"
msgid "Columns"
msgstr "Kolonner"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Lagre denne SQL-spørringen"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "La alle brukere ha adgang til dette bokmerket"
@@ -6913,7 +6972,7 @@ msgstr "Partisjonsdefinisjon"
msgid "+ Add a new value"
msgstr "+ Legg til ny verdi"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tid"
@@ -7112,7 +7171,7 @@ msgid "Protocol version"
msgstr "Protokollversjon"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Bruker"
@@ -7411,7 +7470,7 @@ msgstr "Opprett"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7609,17 +7668,17 @@ msgstr "Tabellen %s eksisterer ikke!"
msgid "Select binary log to view"
msgstr "Velg binærlogg for visning"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Forkort vist spørring"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Vis hele spørringen"
@@ -8144,7 +8203,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Vis masterstatus"
@@ -8299,178 +8358,167 @@ msgstr ""
"Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. "
"Ønsker du å konfigurere den?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Oppdater"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minutt"
+msgstr[1] "Minutt"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Sekund"
+msgstr[1] "Sekund"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråd %s ble avsluttet med suksess."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Handler"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Spørringsmellomlager"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Tråder"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Forsinkede innsettinger"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Nøkkelmellomlager"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Sammenføyninger"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Transaksjonskoordinator"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Vis åpne tabeller"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Vis slaveverter"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Kjøringsinformasjon"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Tjenervalg"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Spørringsstatistikk"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Se slavestatustabell"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Oppdater"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekund"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekund"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minutt"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ikke endre passordet"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Vis åpne tabeller"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relasjoner"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per time"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per minutt"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per sekund"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Spørringstype"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8478,35 +8526,35 @@ msgstr ""
"Denne tjeneren jobber både som tjener og slave i "
"replikasjons prosessen."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
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:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Replikasjonsstatus"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafikk"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8514,45 +8562,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Mottatt"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "tilkoblinger"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "maks. samtidige tilkoblinger"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Feilede forsøk"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Avbrutt"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Prosesser"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8562,17 +8606,17 @@ msgstr ""
"som overskred verdien av binlog_size og brukte en midlertidig fil for å "
"lagre spørringer fra transaksjonen."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Antall transaksjoner som brukte den midlertidige binærloggmellomlageret."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8584,11 +8628,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Antall midlertidige filer mysqld har opprettet."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8596,7 +8640,7 @@ msgstr ""
"Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under "
"utføriing av spørringer."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8604,7 +8648,7 @@ msgstr ""
"Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil "
"oppstod (mest sannsynlig duplisert nøkkel)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8612,23 +8656,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Antall INSERT DELAYED rader skrevet."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Antall utførte FLUSH uttrykk."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Antall interne COMMIT uttrykk."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8638,7 +8682,7 @@ msgstr ""
"tabell med et gitt navn. Dette blir kalt oppdaging (discovery). "
"Handler_discover indikerer antall ganger tabeller har blitt oppdaget."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8648,7 +8692,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:855
+#: server_status.php:864
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."
@@ -8657,7 +8701,7 @@ msgstr ""
"er høyt gir dette en god indikasjon på at dine spørringer og tabeller er "
"riktig indeksert."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8668,7 +8712,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8676,7 +8720,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:858
+#: server_status.php:867
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 "
@@ -8688,7 +8732,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:859
+#: server_status.php:868
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 "
@@ -8700,37 +8744,37 @@ msgstr ""
"tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for "
"å utnytte de indeksene du har."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Antall interne ROLLBACK kommandoer."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antall sider som inneholder data (endret eller uendret)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Antall sider for tiden endret."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Antall tomme sider."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8739,7 +8783,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:868
+#: server_status.php:877
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 "
@@ -8751,11 +8795,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total størrelse på midlertidig mellomlager i sider."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8763,7 +8807,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8771,11 +8815,11 @@ msgstr ""
"Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB "
"utfører en sekvensiell full tabellskanning."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Antall logiske leseforespørsler InnoDB har utført."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8783,7 +8827,7 @@ msgstr ""
"Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra "
"mellomlageret og måtte utføre en enkelsidelesnining."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8797,55 +8841,55 @@ msgstr ""
"telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt "
"innstilt så vil denne verdien være liten."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Antall fsync() operasjoner så langt."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Antall ventende fsync() operasjoner."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Antall ventende lesinger."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Antall ventende skrivinger."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Mengden data lest så langt, i bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Antall utførte lesninger."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Antall utførte skrivinger."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Mengden data skrevet så langt, i bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8853,35 +8897,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Antall loggskrivingsforespørsler."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Antall fysiske skrivinger til loggfila."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Antall fsync-skrivinger utført på loggfila."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Antall ventende loggfil-fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Ventende loggfilskrivinger."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Antall bytes skrevet til loggfila."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Antall sider opprettet."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8889,51 +8933,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Antall sidelesninger."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Antall sideskrivinger."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Antall ventende radlåsinger."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Total tid brukt for å få radlåsinger, i millisekunder."
-#: server_status.php:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antall rader slettet fra InnoDB tabeller."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antall rader satt inn i InnoDB tabeller."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Antall rader lest fra InnoDB tabeller."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Antall rader oppdatert i InnoDB tabeller."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8942,7 +8986,7 @@ msgstr ""
"ennå har blitt skrevet til harddisken. Dette var tidligere kjent som "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8950,7 +8994,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:908
+#: server_status.php:917
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 "
@@ -8959,11 +9003,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8973,15 +9017,15 @@ msgstr ""
"stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan "
"kalkuleres med Key_reads/Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8992,17 +9036,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9010,38 +9054,38 @@ msgstr ""
"Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din "
"tabellmellomlagerverdi for liten."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Antall åpne filer."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Antall åpne tabeller."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Mengden ledig minne i spørringsmellomlager."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Antall mellomlagertreff."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Antall spørringer lagt til i mellomlageret."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9054,7 +9098,7 @@ msgstr ""
"og sist brukt (least recently used (LRU)) strategi for å finne hvilke "
"spørringer som skal fjernes fra mellomlageret."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9062,19 +9106,19 @@ msgstr ""
"Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. "
"query_cache_type innstillingen)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Antall spørringer registrert i mellomlageret."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Totale antall blokker i spørringsmellomlageret."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9082,11 +9126,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9094,7 +9138,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9102,15 +9146,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9118,12 +9162,12 @@ msgstr ""
"Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har "
"gjentatt transaksjoner."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9131,12 +9175,12 @@ msgstr ""
"Antall tråder som har brukt mer enn slow_launch_time sekunder under "
"opprettelse."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9146,24 +9190,24 @@ msgstr ""
"denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size "
"systemvariabelen."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Antall sorteringer som ble utført med rekkefølger."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Antall sorterte rader."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9175,7 +9219,7 @@ msgstr ""
"først optimalisere dine spørringer, og deretter enten splitte din tabell "
"eller tabeller eller bruke replikasjon."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9185,11 +9229,11 @@ msgstr ""
"Threads_created/Connections. Hvis denne verdien er rød bør du øke din "
"thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Antall åpne tilkoblinger."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9200,7 +9244,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Antall tråder som ikke sover."
@@ -9323,7 +9367,7 @@ msgstr "Tjenervariabler og -innstillinger"
msgid "Session value"
msgstr "Økts verdi"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Global verdi"
@@ -9702,39 +9746,39 @@ msgstr "Nøkkelen er for kort, den bør ha minst 8 tegn"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Se de eksterne verdiene"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Insatt rad id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Viser som PHP kode"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Viser SQL spørring"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Validert SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene i tabellen `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Navn"
@@ -10124,23 +10168,23 @@ msgstr "Fremmednøkkelbegrensning"
msgid "No rows selected"
msgstr "Ingen rader valgt"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Velg kolonner (minst ett):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Antall poster per side"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Visningsrekkefølge:"
@@ -10437,6 +10481,12 @@ msgstr "VIEW navn"
msgid "Rename view to"
msgstr "Endre tabellens navn"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Stil"
+
+#~ msgid "seconds"
+#~ msgstr "Sekund"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Sammenligning av eksekveringstid for spørring (i mikrosekunder)"
@@ -10480,22 +10530,14 @@ msgstr "Endre tabellens navn"
#~ "Spørrings statistikk : Siden oppstart, har %s spørringer blitt "
#~ "sendt til tjeneren."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Oppfriskingen av privilegiene lyktes."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Kan være unøyaktig. Se FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Spørringstype"
@@ -10508,7 +10550,5 @@ msgstr "Endre tabellens navn"
#~ msgid "Add a new User"
#~ msgstr "Legg til en ny bruker"
-#, fuzzy
-#~| msgid "Show logo in left frame"
#~ msgid "Show table row links on left side"
#~ msgstr "Vis logo i venstre ramme"
diff --git a/po/nl.po b/po/nl.po
index 06b5e0c734..a4977cf3cf 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Toon alles"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster "
"afgesloten of uw browser blokkeert bijwerkingen van uw venster."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Zoeken"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "Zoeken"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Sleutelnaam"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Beschrijving"
@@ -136,7 +136,7 @@ msgstr "Tabelopmerkingen"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolom"
@@ -149,7 +149,7 @@ msgstr "Kolom"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -165,7 +165,7 @@ msgstr "Type"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "Verwijst naar"
msgid "Comments"
msgstr "Opmerkingen"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "Opmerkingen"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nee"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "Nee"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "Bekijk een dump (schema) van database"
msgid "No tables found in database."
msgstr "Geen tabellen gevonden in de database."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Selecteer alles"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Deselecteer alles"
@@ -270,7 +270,7 @@ msgstr "Database %s is gekopieerd naar %s"
msgid "Rename database to"
msgstr "Hernoem database naar"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Commando"
@@ -331,7 +331,7 @@ msgstr "Overschakelen naar de gekopieerde database"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -356,7 +356,7 @@ msgstr "Bewerk of exporteer relationeel schema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabel"
@@ -372,7 +372,7 @@ msgstr "Rijen"
msgid "Size"
msgstr "Grootte"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "in gebruik"
@@ -398,7 +398,7 @@ msgstr "Laatst bijgewerkt"
msgid "Last check"
msgstr "Laatst gecontroleerd"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +418,25 @@ msgid "visual builder"
msgstr "visuele query opbouwer"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sorteren"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Oplopend"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Aflopend"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Toon"
@@ -459,7 +459,7 @@ msgstr "Verwijder"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Of"
@@ -488,58 +488,58 @@ msgstr "Gebruik tabellen"
msgid "SQL query on database %s :"
msgstr "SQL-query op database %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Query uitvoeren"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Toegang geweigerd"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "ten minste een van de woorden"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "alle woorden"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "de exacte zin"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "als een reguliere expressie"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Zoek resultaten voor \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s overeenkomst in de tabel %s "
msgstr[1] "%s overeenkomsten in de tabel %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Verkennen"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Verwijder gevonden rijen voor de tabel %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -550,65 +550,65 @@ msgstr "Verwijder gevonden rijen voor de tabel %s?"
msgid "Delete"
msgstr "Verwijderen"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Totaal: %s overeenkomst"
msgstr[1] "Totaal: %s overeenkomsten"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Zoeken in de database"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Woord(en) of waarde(s) waarnaar gezocht moet worden (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Zoek:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Woorden worden gesplits door een spatiekarakter (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "In de tabel(len):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "In de kolom:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Geen tabellen gevonden in de database"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s is leeg gemaakt"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "View %s is verwijderd"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s is vervallen"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Tracking is ingeschakeld."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Tracking is niet actief."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -616,106 +616,106 @@ msgid ""
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "View"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replicatie"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Som"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is de standaard storage engine op deze MySQL-server."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Met geselecteerd:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Selecteer alles"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Deselecteer alles"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Selecteer tabellen met overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporteer"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Afdrukken"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Legen"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Verwijderen"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Controleer tabel"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimaliseer tabel"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Repareer tabel"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyseer tabel"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Voeg voorvoegsel toe aan tabel"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Vervang tabelvoorvoegsel"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Vervang tabel met voorvoegsel"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Woordenboek"
@@ -730,9 +730,9 @@ msgstr "Tabellen met tracker"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Database"
@@ -748,8 +748,8 @@ msgstr "Aangemaakt"
msgid "Updated"
msgstr "Bijgewerkt"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -898,7 +898,7 @@ msgstr "De boekenlegger (Bookmark) is verwijderd."
msgid "Showing bookmark"
msgstr "Toon bookmark"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s aangemaakt"
@@ -926,7 +926,7 @@ msgstr ""
"worden versoepeld."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -954,15 +954,15 @@ msgstr "Klik om te selecteren"
msgid "Click to unselect"
msgstr "Klik om te de-selecteren"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Weet u zeker dat u dit wilt "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "U staat op het punt een volledige database te VERWIJDEREN!"
@@ -1015,10 +1015,8 @@ msgstr "Dit is geen cijfer!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Log file aantal"
+msgstr "Totaal aantal"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1038,10 +1036,8 @@ msgstr "De wachtwoorden zijn niet gelijk!"
#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
-#, fuzzy
-#| msgid "Any user"
msgid "Add user"
-msgstr "Een willekeurige gebruiker"
+msgstr "Gebruiker toevoegen"
#: js/messages.php:59
msgid "Reloading Privileges"
@@ -1056,162 +1052,202 @@ msgstr "Geselecteerde gebruikers worden verwijderd"
msgid "Close"
msgstr "Sluiten"
-#: js/messages.php:64 server_status.php:393
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
+#: setup/frames/index.inc.php:137
+msgid "Edit"
+msgstr "Wijzig"
+
+#: js/messages.php:66 server_status.php:416
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Serverkeuze"
-#: js/messages.php:65 server_status.php:396
+#: js/messages.php:67 server_status.php:419
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:66 server_status.php:423
+#: js/messages.php:68 server_status.php:438
#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
msgstr "Query grafiek tonen"
-#: js/messages.php:68
+#: js/messages.php:70
msgid "Static data"
-msgstr ""
+msgstr "Statische data"
#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
#: tbl_structure.php:790
msgid "Total"
msgstr "Totaal"
#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
+#: js/messages.php:74 server_status.php:595
msgid "Other"
-msgstr ""
+msgstr "Andere"
#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
+#: js/messages.php:76 libraries/common.lib.php:1375
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
+#: js/messages.php:78 libraries/common.lib.php:1377
msgid "."
msgstr ","
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Serverkeuze"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processen"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Connecties"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL-queries"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Toon statistieken"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:83
+#: js/messages.php:96
msgid "Loading"
msgstr "Laden"
-#: js/messages.php:84
+#: js/messages.php:97
msgid "Processing Request"
msgstr "Bezig met verwerken"
-#: js/messages.php:85 libraries/import/ods.php:80
+#: js/messages.php:98 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Fout tijdens het verwerken van de opdracht"
-#: js/messages.php:86
+#: js/messages.php:99
msgid "Dropping Column"
msgstr "Kolom komt te vervallen"
-#: js/messages.php:87
+#: js/messages.php:100
msgid "Adding Primary Key"
msgstr "Primaire sleutel wordt toegevoegd"
-#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:101 libraries/relation.lib.php:87 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:91
+#: js/messages.php:104
msgid "Renaming Databases"
msgstr "Database hernoemen"
-#: js/messages.php:92
+#: js/messages.php:105
msgid "Reload Database"
msgstr "Ververs database"
-#: js/messages.php:93
+#: js/messages.php:106
msgid "Copying Database"
msgstr "Database kopiëren"
-#: js/messages.php:94
+#: js/messages.php:107
msgid "Changing Charset"
msgstr "Karakterset aanpassen"
-#: js/messages.php:95
+#: js/messages.php:108
msgid "Table must have at least one column"
msgstr "Tabel moet minimaal één kolom hebben"
-#: js/messages.php:96
+#: js/messages.php:109
msgid "Create Table"
msgstr "Maak tabel"
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
+#: js/messages.php:114
msgid "Insert Table"
-msgstr "Gebruik tabellen"
+msgstr "Tabel toevoegen"
-#: js/messages.php:104
+#: js/messages.php:117
msgid "Searching"
msgstr "Zoeken"
-#: js/messages.php:105
+#: js/messages.php:118
msgid "Hide search results"
msgstr "Verberg zoekresultaten"
-#: js/messages.php:106
+#: js/messages.php:119
msgid "Show search results"
msgstr "Toon zoekresultaten"
-#: js/messages.php:107
+#: js/messages.php:120
msgid "Browsing"
msgstr "Verkennen"
-#: js/messages.php:108
+#: js/messages.php:121
msgid "Deleting"
msgstr "Verwijderen"
-#: js/messages.php:111
+#: js/messages.php:124
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:114
+#: js/messages.php:127
msgid "Hide query box"
msgstr "SQL-query veld verbergen"
-#: js/messages.php:115
+#: js/messages.php:128
msgid "Show query box"
msgstr "SQL-query veld tonen"
# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen
# iets anders.
-#: js/messages.php:116
+#: js/messages.php:129
msgid "Inline Edit"
msgstr "Wijzig inline"
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
-#: setup/frames/index.inc.php:137
-msgid "Edit"
-msgstr "Wijzig"
-
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1219,41 +1255,41 @@ msgstr "Wijzig"
msgid "Save"
msgstr "Opslaan"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Verberg"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Verberg zoekcriteria"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Toon zoek-criteria"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Negeer"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Selecteer de gerefereerde sleutel"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Selecteer vreemde sleutel"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Selecteer de primaire sleutel of een unieke sleutel"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Kies weer te geven veld"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1261,27 +1297,27 @@ msgstr ""
"U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u "
"deze niet opslaat. Wilt u doorgaan?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Voeg een optie toe voor komom "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Genereer wachtwoord"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genereer"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Wijzig wachtwoord"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Meer"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1291,258 +1327,258 @@ msgstr ""
"overwegen. De nieuwe versie is %s, uitgebracht op %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", meest recente versie:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "Recent bijgewerkt"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Klaar"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Vandaag"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "januari"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "februari"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "maart"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "april"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "mei"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "juni"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "juli"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "augustus"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "september"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "oktober"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "november"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "mei"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "dec"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "zondag"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "maandag"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "dinsdag"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "woensdag"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "donderdag"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "vrijdag"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "zaterdag"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "zo"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "ma"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "di"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "do"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "vr"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "za"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "zo"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "di"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "wo"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "do"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "vr"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "za"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Week"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Uur"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuut"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Seconde"
@@ -1639,7 +1675,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databases"
@@ -1705,25 +1741,25 @@ msgstr "%s is uitgeschakeld op deze MySQL-server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Deze MySQL-server ondersteund de %s storage engine niet."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Ongeldige database"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Ongeldige tabel naam"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabel %s is hernoemd naar %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "UI tabel voorkeuren konden niet worden opgeslagen"
@@ -1755,10 +1791,9 @@ msgstr "Thema %s niet gevonden!"
msgid "Theme path not found for theme %s!"
msgstr "Thema pad niet gevonden voor thema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Thema / Stijl"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1766,7 +1801,6 @@ msgstr "Kan niet verbinden: ongeldige instellingen."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Welkom op %s"
@@ -1921,7 +1955,7 @@ msgstr "gedeeld"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabellen"
@@ -2006,7 +2040,6 @@ msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2054,7 +2087,7 @@ msgid "Documentation"
msgstr "Documentatie"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-query"
@@ -2062,121 +2095,121 @@ msgstr "SQL-query"
msgid "MySQL said: "
msgstr "MySQL retourneerde: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Er kan geen verbinding worden gemaakt met de SQL-validator!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Verklaar SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Uitleg SQL overslaan"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "zonder PHP-Code"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Genereer PHP-Code"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Vernieuw"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL-validatie overslaan"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Valideer SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Rechtstreekse bewerking van deze query"
# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen
# iets anders.
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Rechtstreeks"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profiling"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y om %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagen, %s uren, %s minuten en %s seconden"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Vorige"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Einde"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Ga naar database "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2188,41 +2221,41 @@ msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s"
msgid "Structure"
msgstr "Structuur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Invoegen"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Handelingen"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Blader op uw eigen pc:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Selecteer uit de web-server upload directory %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Er zijn geen bestanden om te uploaden"
@@ -2586,7 +2619,7 @@ msgstr "Standaard tabel tabblad"
msgid "Show binary contents as HEX by default"
msgstr "Toon binaire-inhoud standaard als HEX"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Toon binaire-inhoud als HEX"
@@ -4645,7 +4678,7 @@ msgstr "Ontwerper"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Rechten"
@@ -4657,7 +4690,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Retour type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4846,9 +4879,9 @@ msgstr "Karakter set van het bestand:"
msgid "Compression:"
msgstr "Compressie:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Geen"
@@ -4982,37 +5015,53 @@ msgstr "Formaatspecifieke opties:"
msgid "Language"
msgstr "Taal"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Herstel kolom volgorde"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Klik om te sorteren"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Klik om te markeren/demarkeren"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d is geen geldig rij-nummer."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "rij(en) beginnend bij"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontaal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontaal (omgedraaide headers)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "verticaal"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "in %s modus en herhaal kopregels na %s cellen"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sorteren op sleutel"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5025,92 +5074,92 @@ msgstr "Sorteren op sleutel"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opties"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Gedeeltelijke teksten"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Volledige teksten"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relationele sleutel"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Relationele weergave veld"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Toon binaire inhoud"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Toon BLOB inhoud"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformaties"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopiëren"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "De rij is verwijderd"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "stop proces"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Toon Records"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query duurde %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Veranderen"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Query resultaat bewerkingen"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Afdrukken (met volledige teksten)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Grafiek weergeven"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "VIEW aanmaken"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link niet gevonden"
@@ -5160,7 +5209,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -5669,7 +5718,7 @@ msgstr "Toon beschikbare MIME-types"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Machine"
@@ -5892,7 +5941,7 @@ msgstr "SQL-resultaat"
msgid "Generated by"
msgstr "Gegenereerd door"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6054,7 +6103,7 @@ msgstr "Voeg tabelvoorvoegsel toe"
msgid "Add prefix"
msgstr "Voeg voorvoegsel toe"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Geen verandering"
@@ -6390,14 +6439,14 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variabelen"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Waarde"
@@ -6625,20 +6674,20 @@ msgid "Synchronize"
msgstr "Synchronizatie"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binaire log"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variabelen"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Karaktersets"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Engines"
@@ -6683,11 +6732,11 @@ msgstr "Clear"
msgid "Columns"
msgstr "Kolommen"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Sla deze SQL-query op"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Geef elke gebruiker toegang tot deze bookmark"
@@ -6914,7 +6963,7 @@ msgstr "PARTITION definitie"
msgid "+ Add a new value"
msgstr "+ Een nieuwe waarde toevoegen"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tijd"
@@ -7114,7 +7163,7 @@ msgid "Protocol version"
msgstr "Protocolversie"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Gebruiker"
@@ -7386,7 +7435,7 @@ msgstr "Samenvoegen"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7570,17 +7619,17 @@ msgstr "Bestand bestaat niet"
msgid "Select binary log to view"
msgstr "Selecteer de te bekijken binaire log"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Bestanden"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Getoonde queries afkappen"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Toon volledige Queries"
@@ -8088,10 +8137,8 @@ msgid "wildcard"
msgstr "jokerteken"
#: server_privileges.php:2295
-#, fuzzy
-#| msgid "View %s has been dropped"
msgid "User has been added."
-msgstr "View %s is verwijderd"
+msgstr "Gebruiker is toegevoegd"
#: server_replication.php:49
msgid "Unknown error"
@@ -8122,7 +8169,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Toon master status"
@@ -8272,12 +8319,34 @@ msgstr ""
"Deze server is niet ingesteld als slave in een replicatie proces. Wilt u dit "
"nu instellen ?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Vernieuw"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minuut"
+msgstr[1] "Minuut"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Seconde"
+msgstr[1] "Seconde"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s is succesvol afgesloten."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8285,166 +8354,129 @@ msgstr ""
"phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het "
"al gesloten."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Handler"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Threads"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Tijdelijke data"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Vertraagde inserts"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Sleutelcache"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Joins"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Transactie coördinator"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Schoon (sluit) alle tabellen"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Toon open tabellen"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Toon slave hosts"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Toon slave status"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Schoon query cache"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Runtime-informatie"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Serverkeuze"
+msgstr "Serververkeer"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Toon statistieken"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Slave status tabel"
+msgstr "alle status variabelen"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Vernieuw"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Seconde"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Seconde"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuut"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Wijzig het wachtwoord niet"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Toon open tabellen"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Gerelateerde links"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per uur"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per minuut"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per seconde"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Query-type"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8452,13 +8484,13 @@ msgstr ""
"Deze MySQL server is ingesteld als master en slave in een "
"replicatie proces."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Deze MySQL server is ingesteld als slave in een replicatie "
@@ -8467,23 +8499,23 @@ msgstr ""
# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
# "Deze MySQL-server functioneert als %s in een replicatie proces."
# weggehaald.
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Replicatie status"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Verkeer"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8491,45 +8523,41 @@ msgstr ""
"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor "
"kunnen de gerapporteerde statistieken afwijken."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Ontvangen"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Verzonden"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Connecties"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Max. gelijktijdige verbindingen"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Mislukte pogingen"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Afgehaakte"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processen"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8540,18 +8568,18 @@ msgstr ""
"hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op "
"te slaan."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8563,11 +8591,11 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8575,7 +8603,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:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8583,7 +8611,7 @@ msgstr ""
"Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad "
"(mogelijk een reeds bestaande sleutel)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8592,23 +8620,23 @@ msgstr ""
"afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen "
"thread."
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Het aantal met INSERT DELAYED opgeslagen rijen."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Het aantal uitgevoerde FLUSH opdrachten."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Het aantal interne COMMIT opdrachten."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8618,7 +8646,7 @@ msgstr ""
"met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft "
"aan hoeveel tabellen met discovery werden opgezocht."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8628,7 +8656,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:855
+#: server_status.php:864
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."
@@ -8637,7 +8665,7 @@ msgstr ""
"hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige "
"indexen."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8647,7 +8675,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8655,7 +8683,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:858
+#: server_status.php:867
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 "
@@ -8668,7 +8696,7 @@ msgstr ""
"gehele tabel moet scannen of er worden joins toegepast die niet goed "
"gebruikmaken van sleutels."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8681,35 +8709,35 @@ msgstr ""
"zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van "
"maken."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Het aantal interne ROLLBACK opdrachten."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Het aantal update opdrachten voor een tabel rij."
-#: server_status.php:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Het aantal pages dat data bevat (dirty en clean)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Het aantal pages dat momenteel dirty is."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Het aantal vrije pages."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8719,7 +8747,7 @@ msgstr ""
"momenteel wordt gelezen of geschreven, of die om een andere reden niet "
"geschoond of verwijderd kunnen worden."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8731,11 +8759,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Totale formaat van de buffer pool, in pages."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8744,7 +8772,7 @@ msgstr ""
"gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in "
"willekeurige volgorde."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8752,11 +8780,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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8764,7 +8792,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:874
+#: server_status.php:883
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 "
@@ -8778,86 +8806,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Het aantal fsync() operaties."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Het aantal momenteel openstaande fsync() operaties."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Het aantal momenteel openstaande lees operaties."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Het aantal momenteel openstaande schrijf operaties."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "De hoeveelheid gelezen data, in bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Het totale aantal data lees operaties."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Het totale aantal data schrijf operaties."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "De hoeveelheid geschreven data, in bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "Het aantal uitgevoerde doublewrite operaties."
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Het aantal log schrijf opdrachten."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Het aantal fysieke schrijf operaties op het log bestand."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Het aantal momenteel openstaande fsync operaties op het logbestand."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Het aantal bytes dat naar het logbestand werd geschreven."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Het aantal pages dat werd aangemaakt."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8866,54 +8894,54 @@ msgstr ""
"Veel waarden worden geteld in pages. Een vaste page grootte maakt het "
"eenvoudig deze te converteren naar bytes."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Het aantal gelezen pages."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Het aantal geschreven pages."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8922,13 +8950,13 @@ msgstr ""
"niet naar disk zijn geschreven. Dit stond voorheen bekend als "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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 "
@@ -8937,11 +8965,11 @@ msgstr ""
"Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal "
"behaalde waarde sinds het starten van de server."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8951,15 +8979,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8970,19 +8998,19 @@ msgstr ""
"verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend "
"dat er nog geen query is gecompiled."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8990,39 +9018,39 @@ msgstr ""
"Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table "
"cache waarde te laag."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Het totaal aantal geopende bestanden."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Het totaal aantal open tabellen."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "De hoeveelheid vrij geheugen voor het query cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Het aantal cache hits."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Het aantal queries dat aan het cache werd toegevoegd."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9035,7 +9063,7 @@ msgstr ""
"recent gebruikt (least recently used, LRU) strategie om te bepalen welke "
"queries worden verwijderd."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9043,19 +9071,19 @@ msgstr ""
"Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached "
"vanwege de query_cache_type instelling)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Het aantal queries dat in het cache staat."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Het totaal aantal blokken in het query cache."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9063,13 +9091,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9078,7 +9106,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9086,17 +9114,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9104,13 +9132,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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9118,14 +9146,14 @@ msgstr ""
"Het aantal threads waarvoor het opstarten langer dan slow_launch_time "
"seconden duurde."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9135,24 +9163,24 @@ msgstr ""
"uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem "
"variabele sort_buffer_size te vergroten."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Het aantal gesorteerde rijen."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9164,7 +9192,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:945
+#: server_status.php:954
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 "
@@ -9174,11 +9202,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Het aantal momenteel openstaande verbindingen."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9190,7 +9218,7 @@ msgstr ""
"verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede "
"thead implementatie, geen noemenswaardige prestatie verbetering.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Het aantal threads dat actief bezig is."
@@ -9313,7 +9341,7 @@ msgstr "Servervariabelen en -instellingen"
msgid "Session value"
msgstr "Sessievariabelen"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globale waarde"
@@ -9645,39 +9673,39 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Sleutel hoort letters, cijfers [em]en[/em] speciale tekens te bevatten."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Bekijk vreemde waarden"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Bookmark \"%s\" wordt gebruikt als standaard browse query."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Toegevoegd rij nummer: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Getoond als PHP-code"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Toont SQL-query"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Gevalideerde SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemen met de indexen van de tabel `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Label"
@@ -10060,23 +10088,23 @@ msgstr "FOREIGN KEY beperking"
msgid "No rows selected"
msgstr "Geen rijen geselecteerd"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Selecteer velden (minstens één):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Zoekcondities toevoegen (het \"where\" gedeelte van de query):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "records per pagina"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Weergave volgorde:"
@@ -10360,6 +10388,12 @@ msgstr "VIEW-naam"
msgid "Rename view to"
msgstr "Hernoem view naar"
+#~ msgid "Theme / Style"
+#~ msgstr "Thema / Stijl"
+
+#~ msgid "seconds"
+#~ msgstr "Seconde"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Vergelijking van query-uitvoertijden (in microseconden)"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 501094b103..6a3dece540 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,12 +19,12 @@ msgstr ""
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgid ""
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr ""
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr ""
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr ""
@@ -136,7 +136,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr ""
@@ -149,7 +149,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr ""
@@ -165,7 +165,7 @@ msgstr ""
msgid "Null"
msgstr ""
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr ""
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr ""
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr ""
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr ""
msgid "No tables found in database."
msgstr ""
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr ""
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr ""
@@ -270,7 +270,7 @@ msgstr ""
msgid "Rename database to"
msgstr ""
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr ""
@@ -331,7 +331,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -354,7 +354,7 @@ msgstr ""
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr ""
@@ -370,7 +370,7 @@ msgstr ""
msgid "Size"
msgstr ""
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr ""
@@ -396,7 +396,7 @@ msgstr ""
msgid "Last check"
msgstr ""
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, possible-php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -416,25 +416,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr ""
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr ""
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr ""
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr ""
@@ -457,7 +457,7 @@ msgstr ""
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr ""
@@ -486,58 +486,58 @@ msgstr ""
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr ""
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr ""
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr ""
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr ""
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr ""
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr ""
-#: db_search.php:229
+#: db_search.php:231
#, possible-php-format
msgid "Search results for \"%s \" %s:"
msgstr ""
-#: db_search.php:247
+#: db_search.php:249
#, possible-php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
-#: db_search.php:259
+#: db_search.php:261
#, possible-php-format
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -548,171 +548,171 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: db_search.php:272
+#: db_search.php:274
#, possible-php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr ""
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr ""
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr ""
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr ""
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr ""
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr ""
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, possible-php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, possible-php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, possible-php-format
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, possible-php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr ""
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, possible-php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr ""
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr ""
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr ""
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr ""
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -727,9 +727,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr ""
@@ -745,8 +745,8 @@ msgstr ""
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr ""
@@ -880,7 +880,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, possible-php-format
msgid "Bookmark %s created"
msgstr ""
@@ -903,7 +903,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -929,15 +929,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1025,152 +1025,188 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-msgid "Live traffic chart"
-msgstr ""
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-msgid "Live query chart"
-msgstr ""
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr ""
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ""
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ""
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr ""
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr ""
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr ""
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr ""
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr ""
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr ""
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr ""
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr ""
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr ""
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr ""
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr ""
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr ""
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr ""
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr ""
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr ""
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr ""
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr ""
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ""
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ""
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+msgid "Server traffic (in KiB)"
+msgstr ""
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr ""
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr ""
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr ""
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr ""
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr ""
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr ""
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr ""
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr ""
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr ""
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr ""
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr ""
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr ""
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr ""
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr ""
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr ""
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr ""
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr ""
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1178,67 +1214,67 @@ msgstr ""
msgid "Save"
msgstr ""
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr ""
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr ""
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr ""
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, possible-php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1246,258 +1282,258 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr ""
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr ""
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr ""
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr ""
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr ""
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr ""
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr ""
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr ""
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr ""
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr ""
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr ""
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr ""
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr ""
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr ""
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr ""
@@ -1586,7 +1622,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr ""
@@ -1650,25 +1686,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, possible-php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, possible-php-format
msgid "Table %s has been renamed to %s"
msgstr ""
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1700,9 +1736,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1711,7 +1746,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, possible-php-format
msgid "Welcome to %s"
msgstr ""
@@ -1854,7 +1888,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr ""
@@ -1930,7 +1964,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr ""
@@ -1978,7 +2011,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr ""
@@ -1986,119 +2019,119 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr ""
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, possible-php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, possible-php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, possible-php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2110,41 +2143,41 @@ msgstr ""
msgid "Structure"
msgstr ""
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr ""
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr ""
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, possible-php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2485,7 +2518,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4358,7 +4391,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr ""
@@ -4370,7 +4403,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4548,9 +4581,9 @@ msgstr ""
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr ""
@@ -4669,37 +4702,53 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, possible-php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr ""
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, possible-php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4712,92 +4761,92 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, possible-php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr ""
@@ -4841,7 +4890,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5282,7 +5331,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr ""
@@ -5482,7 +5531,7 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -5633,7 +5682,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr ""
@@ -5958,14 +6007,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr ""
@@ -6187,20 +6236,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6245,11 +6294,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6447,7 +6496,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr ""
@@ -6600,7 +6649,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr ""
@@ -6840,7 +6889,7 @@ msgstr ""
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7011,17 +7060,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr ""
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7524,7 +7573,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7657,245 +7706,234 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr ""
+
+#: server_status.php:31
+#, possible-php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: server_status.php:33
+#, possible-php-format
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] ""
+msgstr[1] ""
+
+#: server_status.php:134
#, possible-php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:103
+#: server_status.php:136
#, possible-php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr ""
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr ""
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr ""
-#: server_status.php:367
+#: server_status.php:400
msgid "Server traffic"
msgstr ""
-#: server_status.php:368
-msgid "Query statistics"
-msgstr ""
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-msgid "Refresh rate"
-msgstr ""
-
-#: server_status.php:380 server_status.php:411
-msgid "second"
-msgstr ""
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-msgid "seconds"
-msgstr ""
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-msgid "minutes"
-msgstr ""
-
-#: server_status.php:440
+#: server_status.php:455
msgid "Containing the word:"
msgstr ""
-#: server_status.php:445
+#: server_status.php:460
msgid "Show only alert values"
msgstr ""
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
msgid "Related links:"
msgstr ""
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, possible-php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, possible-php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -7903,78 +7941,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -7982,7 +8020,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -7990,42 +8028,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8033,33 +8071,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8068,227 +8106,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8296,99 +8334,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8396,18 +8434,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8415,7 +8453,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8536,7 +8574,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -8808,39 +8846,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, possible-php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, possible-php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr ""
-#: sql.php:960
+#: sql.php:973
#, possible-php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9198,23 +9236,23 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr ""
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr ""
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 3834a63f8b..979855a60d 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: polish \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Pokaż wszystko"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"rodzic zostało zamknięte lub przeglądarka, uwzględniając ustawienia "
"bezpieczeństwa, blokuje aktualizacje pomiędzy oknami"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Szukaj"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Szukaj"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Nazwa klucza"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Opis"
@@ -138,7 +138,7 @@ msgstr "Komentarze tabeli"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolumna"
@@ -151,7 +151,7 @@ msgstr "Kolumna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -167,7 +167,7 @@ msgstr "Typ"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Łącze"
msgid "Comments"
msgstr "Komentarze"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "Komentarze"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nie"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "Nie"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "Zrzut bazy danych"
msgid "No tables found in database."
msgstr "Nie znaleziono tabeli w bazie danych."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Zaznacz wszystkie"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Usuń zaznaczenie"
@@ -272,7 +272,7 @@ msgstr "Baza danych %s została przekopiowana do %s"
msgid "Rename database to"
msgstr "Zmień nazwę bazy danych na"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Polecenie"
@@ -333,7 +333,7 @@ msgstr "Przełącz do przekopiowanej bazy danych"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -361,7 +361,7 @@ msgstr "Edytuj lub eksportuj schemat relacji"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabela"
@@ -377,7 +377,7 @@ msgstr "Rekordów"
msgid "Size"
msgstr "Rozmiar"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "w użyciu"
@@ -403,7 +403,7 @@ msgstr "Ostatnia aktualizacja"
msgid "Last check"
msgstr "Ostatnie sprawdzenie"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -424,25 +424,25 @@ msgid "visual builder"
msgstr "edytor graficzny"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sortuj"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Rosnąco"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Malejąco"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Pokaż"
@@ -465,7 +465,7 @@ msgstr "Usuń"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "lub"
@@ -496,39 +496,39 @@ msgstr "Użyj tabel"
msgid "SQL query on database %s :"
msgstr "Zapytanie SQL dla bazy danych %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Wykonaj zapytania"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Brak dostępu"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "przynajmniej jedno ze słów"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "wszystkie słowa"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "cała fraza"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "wyrażenie regularne"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Szukaj w rezultatach dla \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
@@ -536,19 +536,19 @@ msgstr[0] "%s trafień wewnątrz tabeli %s "
msgstr[1] "%s trafienia wewnątrz tabeli %s "
msgstr[2] "%s trafień wewnątrz tabeli %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Przeglądaj"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Usuń wszystkie trafienia dla tabeli %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -559,7 +559,7 @@ msgstr "Usuń wszystkie trafienia dla tabeli %s?"
msgid "Delete"
msgstr "Usuń"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -567,58 +567,58 @@ msgstr[0] "W sumie: %s trafień"
msgstr[1] "W sumie: %s trafienia"
msgstr[2] "W sumie: %s trafień"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Szukaj w bazie danych"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Szukane słowa lub wartości (symbol wieloznaczny: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Znajdź:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Słowa są rozdzielane znakiem spacji (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Wewnątrz tabel(i):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Wewnątrz kolumny:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Nie znaleziono żadnych tabel w bazie danych."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s została opróżniona"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Widok %s został usunięty"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s została usunięta"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Monitorowanie jest aktywne."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Monitorowanie nie jest aktywne."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -627,112 +627,108 @@ msgstr ""
"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
"%sdocumentation%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Widok"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikacja"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Suma"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s to domyślny mechanizm składowania tego serwera MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Zaznaczone:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Zaznacz wszystkie"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Usuń zaznaczenie"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Zaznacz nieoptymalne"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Widok do druku"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Wyczyść"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Usuń"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Sprawdź tabelę"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optymalizuj tabelę"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Napraw tabelę"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizuj tabelę"
-#: db_structure.php:521
-#, fuzzy
-#| msgid "Go to table"
+#: db_structure.php:522
msgid "Add prefix to table"
-msgstr "Przejdź do tabeli"
+msgstr "Dodaj prefiks do tabeli"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
-#, fuzzy
-#| msgid "Replace table data with file"
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
-msgstr "Zamiana danych tabeli z plikiem"
+msgstr "Zmień prefiks tabeli"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Zamiana danych tabeli z plikiem"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Słownik danych"
@@ -747,9 +743,9 @@ msgstr "Monitorowane tabele"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Baza danych"
@@ -765,8 +761,8 @@ msgstr "Utworzone"
msgid "Updated"
msgstr "Zaktualizowane"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -909,7 +905,7 @@ msgstr "Zapamiętane zapytanie SQL zostało usunięte."
msgid "Showing bookmark"
msgstr "Pokaz zapamiętanego zapytania"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Zapytanie %s zostało zapamiętane"
@@ -937,7 +933,7 @@ msgstr ""
"importu bez zwiększenia limitów czasowych PHP."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -965,15 +961,15 @@ msgstr "Kliknij, aby zaznaczyć"
msgid "Click to unselect"
msgstr "Kliknij, aby usunąć zaznaczenie"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Polecenie \"DROP DATABASE\" jest zablokowane."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Czy na pewno wykonać "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!"
@@ -1071,172 +1067,214 @@ msgstr "Usuń zaznaczonych użytkowników"
msgid "Close"
msgstr "Zamknij"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Wybór serwera"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Live query chart"
-msgstr "Okno zapytania SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Sumarycznie"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Wczytywanie"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Przetwarzanie wywołania"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Błąd przetwarzania wywołania"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Usuwanie Kolumny"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Dodawanie klucza głównego"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Zmiana nazwy bazy danych"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Przeładowanie bazy danych"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Kopiowanie bazy danych"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Kodowanie napisów"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Tabela musi mieć przynajmniej jedną kolumnę"
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Utwórz tabelę"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Użyj tabel"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Wyszukiwanie"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Ukryj okno zapytania SQL"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show search results"
-msgstr "Okno zapytania SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Przeglądaj"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Usuwanie %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Ukryj okno zapytań"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Pokaż okno zapytań"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Mechanizmy"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edytuj"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Wybór serwera"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Live query chart"
+msgstr "Okno zapytania SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Sumarycznie"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Wybór serwera"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesy"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Połączenia"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Zapytania SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statystyki zapytań"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Wczytywanie"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Przetwarzanie wywołania"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Błąd przetwarzania wywołania"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Usuwanie Kolumny"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Dodawanie klucza głównego"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Zmiana nazwy bazy danych"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Przeładowanie bazy danych"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopiowanie bazy danych"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Kodowanie napisów"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabela musi mieć przynajmniej jedną kolumnę"
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Utwórz tabelę"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Użyj tabel"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Wyszukiwanie"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Ukryj okno zapytania SQL"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show search results"
+msgstr "Okno zapytania SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Przeglądaj"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Usuwanie %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Ukryj okno zapytań"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Pokaż okno zapytań"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Mechanizmy"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1244,71 +1282,71 @@ msgstr "Edytuj"
msgid "Save"
msgstr "Zachowaj"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ukryj"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Ukryj okno zapytania SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "Okno zapytania SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoruj"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Wybierz klucz odwołujący"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Wybierz klucz zewnętrzny"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Należy wybrać klucz główny lub klucz jednoznaczny"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Wybierz kolumny do wyświetlenia"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Dodaj opcję do kolumny"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Wygeneruj hasło"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generuj"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Zmień hasło"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Więcej"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1318,109 +1356,109 @@ msgstr ""
"werja to %s, wydana dnia %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", ostatnia stabiln()a wersja:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Przejdź do bazy danych"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Zakończ"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Poprzedni"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Następne"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Dzisiaj"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr " Styczeń"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Luty"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Marzec"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Kwiecień"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Maj"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Czerwiec"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Lipiec"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Sierpień"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Wrzesień"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Październik"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Listopad"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Grudzień"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Sty"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Kwi"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1428,166 +1466,166 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Cze"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Sie"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Wrz"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Paź"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Gru"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Niedziela"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Poniedziałek"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Wtorek"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Środa"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Czwartek"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Piątek"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Nie"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Wto"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Śro"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Czw"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pią"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Nie"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Wto"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Śro"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Czw"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pią"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sob"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Wk"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Godzina"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekunda"
@@ -1684,7 +1722,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Bazy danych"
@@ -1757,25 +1795,25 @@ msgstr "Mechanizm %s został wyłączony w tym serwerze MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Niewłaściwa baza danych"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Niewłaściwa nazwa tabeli"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabela %s ma nazwę zmienioną na %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1808,10 +1846,9 @@ msgstr "Nie znaleziono motywu graficznego %s!"
msgid "Theme path not found for theme %s!"
msgstr "Nie znaleziono ścieżki do motywu %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Motyw graficzny / styl"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1819,7 +1856,6 @@ msgstr "Nie udało się nawiązać połączenia: błędne ustawienia."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Witamy w %s"
@@ -1971,7 +2007,7 @@ msgstr "współdzielone"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabele"
@@ -2060,7 +2096,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Serwer"
@@ -2108,7 +2143,7 @@ msgid "Documentation"
msgstr "Dokumentacja"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Zapytanie SQL"
@@ -2116,123 +2151,123 @@ msgstr "Zapytanie SQL"
msgid "MySQL said: "
msgstr "MySQL zwrócił komunikat: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "Nie można połączyć się z serwerem MySQL"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Wyjaśnij SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Pomiń wyjaśnienie SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Bez kodu PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Utwórz kod PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Odśwież"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Pomiń sprawdzanie poprawności SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Sprawdź poprawność SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Szybka edycja tego zapytania"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Mechanizmy"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilowanie"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "bajtów"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s godzin, %s minut i %s sekund"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Początek"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Poprzednie"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Przejście do bazy danych "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2244,42 +2279,42 @@ msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s"
msgid "Structure"
msgstr "Struktura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Dodaj"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacje"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Wyszukaj w komputerze"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "katalog serwera WWW dla uploadu"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Nie podałeś plików do wgrania na serwer"
@@ -2643,7 +2678,7 @@ msgstr "Domyślna zakładka tabeli"
msgid "Show binary contents as HEX by default"
msgstr "Domyślnie pokaż treść kolumn binarnych jako wartość HEX"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Pokaż zawartość binarną w postaci szesnastkowej"
@@ -4750,7 +4785,7 @@ msgstr "Widok projektu"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Uprawnienia"
@@ -4762,7 +4797,7 @@ msgstr "Procedury i funkcje"
msgid "Return type"
msgstr "Zwracany typ"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4981,9 +5016,9 @@ msgstr "Kodowanie pliku:"
msgid "Compression:"
msgstr "Typ kompresji"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Brak"
@@ -5141,39 +5176,59 @@ msgstr "Opcje formatu:"
msgid "Language"
msgstr "Język"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Dodaj/usuń pola"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Kliknij, aby zaznaczyć"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d nie jest prawidłowym numerem rekordu."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "rekordów począwszy od"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "poziomo"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "poziomo (obrócone nagłówki)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "pionowo"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "w trybie %s powtórz nagłówki po %s komórkach"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sortuj wg klucza"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5186,101 +5241,101 @@ msgstr "Sortuj wg klucza"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opcje"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Skrócony tekst"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Pełny tekst"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Klucz relacyjny"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Schemat relacyjny"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Pokaż zawartość binarną"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Pokaż zawartość BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Sposób prezentacji danych"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopiuj"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Rekord został skasowany"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Unicestwij"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "w zapytaniu"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Pokaż rekordy "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "wszystkich"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Wykonanie zapytania trwało %01.4f sekund(y)"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Zmień"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operacja na wynikach zapytania"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Widok do druku (z pełnymi tekstami)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Wyświetl schemat PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Utwórz związek"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Łącze nie znalezione"
@@ -5327,7 +5382,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Rezerwy buforowe"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Status InnoDB"
@@ -5847,7 +5902,7 @@ msgstr "Dostępne typy MIME"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -6062,7 +6117,7 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Wygenerowany przez"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6230,7 +6285,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Dołącz indeks(y)"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Bez zmian"
@@ -6564,14 +6619,14 @@ msgid "Slave status"
msgstr "Stan serwera podrzędnego"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Zmienna"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Wartość"
@@ -6817,20 +6872,20 @@ msgid "Synchronize"
msgstr "Synchronizacja"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Dziennik binarny"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Zmienne"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Kodowania napisów"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Mechanizmy"
@@ -6877,11 +6932,11 @@ msgstr "Wyczyść"
msgid "Columns"
msgstr "Nazwy kolumn"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Pamiętaj zapytanie SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Pozwól na dostęp wszystkim użytkownikom"
@@ -7121,7 +7176,7 @@ msgstr "Definicja partycji"
msgid "+ Add a new value"
msgstr "Dodaj nowy serwer"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Czas"
@@ -7369,7 +7424,7 @@ msgid "Protocol version"
msgstr "Wersja protokołu"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Użytkownik"
@@ -7668,7 +7723,7 @@ msgstr "Utwórz"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7865,17 +7920,17 @@ msgstr "Tabela \"%s\" nie istnieje!"
msgid "Select binary log to view"
msgstr "Wybierz dziennik binarny do podglądu"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Pliki"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Ucinaj wyświetlane zapytania"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Pokaż pełne zapytania"
@@ -8412,7 +8467,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Pokaż stan serwera głównego"
@@ -8569,12 +8624,36 @@ msgstr ""
"Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy "
"chcesz go skonfigurować ?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Odśwież"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minuta"
+msgstr[1] "Minuta"
+msgstr[2] "Minuta"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Sekunda"
+msgstr[1] "Sekunda"
+msgstr[2] "Sekunda"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Wątek %s został pomyślnie unicestwiony."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8582,166 +8661,133 @@ msgstr ""
"phpMyAdminowi nie udało się unicestwić wątku %s. Prawdopodobnie został on "
"już zamknięty."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Obsługa"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Pamięć podręczna zapytań"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Wątki"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Dane tymczasowe"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Opóźnione dodania"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Bufor podręczny indeksów"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Złączenia"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortowanie"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Koordynator transakcji"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Przeładuj (zamknij) wszystkie tabele"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Pokaż otwarte tabele"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Pokaż podrzędne hosty"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Status serwera podrzędnego"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Opróżnij bufor podręczny zapytań"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informacje o działaniu serwera"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Wybór serwera"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Statystyki zapytań"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Zobacz status tabeli serwera podrzędnego"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Odśwież"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekunda"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekunda"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuta"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nie zmieniaj hasła"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Pokaż otwarte tabele"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacje"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "na godzinę"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "na minutę"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "na sekundę"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Rodzaj zapytania"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Serwer MySQL działa przez %s. Początek pracy: %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8749,29 +8795,29 @@ msgstr ""
"Ten serwer MySQL jest ustawiony jako master i slave w procesie "
"replikacji ."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Stan replikacji"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Ruch"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8779,45 +8825,41 @@ msgstr ""
"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki "
"jakich dostarcza serwer MySQL nie są wiarygodne."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Otrzymane"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Wysłane"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Połączenia"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Maks. jednoczesnych połączeń"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Nieudane próby"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Przerwane"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesy"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8827,18 +8869,18 @@ msgstr ""
"binarnego, które przekroczyły wartość binlog_cache_size i do zapisania "
"instrukcji transakcji został użyty plik tymczasowy."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8850,11 +8892,11 @@ msgstr ""
"zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w "
"pamięci, a nie na dysku."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Ile plików tymczasowych utworzył mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8862,7 +8904,7 @@ msgstr ""
"Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer "
"podczas wykonywania instrukcji."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8870,7 +8912,7 @@ msgstr ""
"Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił "
"jakiś błąd (prawdopodobnie zdublowany klucz)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8878,23 +8920,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Liczba wykonanych instrukcji FLUSH."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Liczba wewnętrznych instrukcji COMMIT."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Ile razy rekord został usunięty z tabeli."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8904,7 +8946,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:854
+#: server_status.php:863
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, "
@@ -8914,7 +8956,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:855
+#: server_status.php:864
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."
@@ -8922,7 +8964,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:856
+#: server_status.php:865
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 "
@@ -8932,7 +8974,7 @@ msgstr ""
"jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym "
"przedziale lub przy przeszukiwaniu indeksu."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8940,7 +8982,7 @@ msgstr ""
"Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda "
"używana głównie do optymalizacji ORDER BY … DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8952,7 +8994,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:859
+#: server_status.php:868
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 "
@@ -8964,35 +9006,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Liczba wewnętrznych instrukcji ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Liczba żądań zmiany rekordu w tabeli."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Liczba żądań dodania rekordu do tabeli."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Liczba stron zawierających dane (brudnych lub czystych)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Liczba aktualnie brudnych stron."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Liczba wolnych stron."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -9002,7 +9044,7 @@ msgstr ""
"odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub "
"usunięte z jakiegoś innego powodu."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -9015,11 +9057,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Łączny rozmiar puli bufora, w stronach."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -9028,7 +9070,7 @@ msgstr ""
"Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej "
"kolejności."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9036,11 +9078,11 @@ msgstr ""
"Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. "
"Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9048,7 +9090,7 @@ msgstr ""
"Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i "
"musiał wykonać odczyt pojedynczej strony."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -9062,51 +9104,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Liczba wykonanych zapisów do puli bufora InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Liczba dotąd wykonanych operacji fsync()."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Aktualna liczba operacji fsync() w toku."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Aktualna liczba odczytów w toku."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Aktualna liczba zapisów w toku."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Ilość dotąd odczytanych danych, w bajtach."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Łączna liczba odczytów danych."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Łączna liczba zapisów danych."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Ilość dotąd zapisanych danych, w bajtach."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr "Liczba przeprowadzonych zapisów typu doublewrite ."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "Liczba stron zapisanych przy zapisie typu doublewrite ."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -9114,35 +9156,35 @@ msgstr ""
"Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy "
"oczekiwano na jego opróżnienie."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Liczba żądań zapisów do dziennika."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Liczba fizycznych zapisów do pliku dziennika."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Liczba synchronicznych zapisów do pliku dziennika."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Liczba wywołań fsync dla pliku dziennika w toku."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Liczba zapisów do pliku dziennika w toku."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Liczba bajtów zapisanych do pliku dziennika."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Liczba utworzonych stron."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9151,51 +9193,51 @@ msgstr ""
"mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą "
"konwersję na bajty."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Liczba odczytanych stron."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Liczba zapisanych stron."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Liczba blokad rekordów na które aktualnie się czeka."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Średni czas uzyskania blokady rekordu, w milisekundach."
-#: server_status.php:899
+#: server_status.php:908
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:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Ile razy czekano na blokadę rekordu."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Liczba rekordów usuniętych z tabel InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Liczba rekordów dodanych do tabel InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Liczba rekordów odczytanych z tabel InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Liczba rekordów zmienionych w tabelach InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9204,7 +9246,7 @@ msgstr ""
"jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -9212,7 +9254,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:908
+#: server_status.php:917
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 "
@@ -9221,11 +9263,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9236,15 +9278,15 @@ msgstr ""
"Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/"
"Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9255,17 +9297,17 @@ msgstr ""
"wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze "
"żadne zapytanie nie zostało skompilowane."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9273,39 +9315,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Liczba otwartych plików."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Liczba otwartych tabel."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Liczba trafień pamięci podręcznej."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Liczba zapytań dodanych do pamięci podręcznej."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9318,7 +9360,7 @@ msgstr ""
"bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany"
"\" (least recently used - LRU)."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9326,19 +9368,19 @@ msgstr ""
"Liczba niezbuforowanych zapytań (nie dających się zbuforować lub "
"niezbuforowanych z powodu ustawienia query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Całkowita liczba bloków w buforze podręcznym zapytań."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9346,13 +9388,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9361,7 +9403,7 @@ msgstr ""
"dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się "
"indeksom tabel.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9369,16 +9411,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9386,26 +9428,26 @@ msgstr ""
"Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał "
"transakcje."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9415,23 +9457,23 @@ msgstr ""
"dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej "
"systemowej sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Liczba sortowań wykonanych przy użyciu zakresów."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Liczba posortowanych rekordów."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9443,7 +9485,7 @@ msgstr ""
"się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) "
"lub użyć replikacji."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9453,11 +9495,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Liczba aktualnie otwartych połączeń."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9469,7 +9511,7 @@ msgstr ""
"(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego "
"polepszenia wydajności.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Liczba nieuśpionych wątków."
@@ -9596,7 +9638,7 @@ msgstr "Zmienne i ustawienia serwera"
msgid "Session value"
msgstr "Wartość sesji"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Wartość globalna"
@@ -9975,41 +10017,41 @@ msgstr "Klucz jest za krótki, powinien mieć co najmniej 8 znaków."
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Klucz powinien zawierać znaki alfanumeryczne [em]i[/em] i specjalne."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Przeglądaj zewnętrzne wartości"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Identyfikator wstawionego rekordu: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Wyświetlany jest kod PHP."
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Wyświetlane jest zapytanie SQL."
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Sprawdź poprawność SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemy z indeksami tabeli `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Nazwa"
@@ -10402,25 +10444,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Żaden rekord nie został zaznaczony"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Wybór pól (co najmniej jedno):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj warunki przeszukiwania (warunek dla \"WHERE\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "rekordów na stronie"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Kolejność wyświetlania:"
@@ -10724,6 +10766,12 @@ msgstr "Nazwa widoku"
msgid "Rename view to"
msgstr "Zmień nazwę perspektywy na"
+#~ msgid "Theme / Style"
+#~ msgstr "Motyw graficzny / styl"
+
+#~ msgid "seconds"
+#~ msgstr "Sekunda"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Porównanie czasu wykonywania zapytania (w milisekundach)"
@@ -10749,8 +10797,6 @@ msgstr "Zmień nazwę perspektywy na"
#~ msgid "Show processes"
#~ msgstr "Pokaż procesy"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Resetuj"
@@ -10769,27 +10815,17 @@ msgstr "Zmień nazwę perspektywy na"
#~ "Statystyki zapytań : Od rozpoczęcia jego pracy, do serwera zostało "
#~ "wysłanych %s zapytań."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Uprawnienia zostały pomyślnie przeładowane."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Rodzaj zapytania"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Dodaj nowego użytkownika"
@@ -10799,8 +10835,6 @@ msgstr "Zmień nazwę perspektywy na"
#~ msgid "Add a new User"
#~ msgstr "Dodaj nowego użytkownika"
-#, fuzzy
-#~| msgid "Show logo in left frame"
#~ msgid "Show table row links on left side"
#~ msgstr "Pokaż logo w lewej ramce"
diff --git a/po/pt.po b/po/pt.po
index ac6515e0ae..e1d213cfde 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: \n"
"Language-Team: portuguese \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Mostrar tudo"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"navegador encontram-se definidas para não permitir actualizações entre "
"janelas."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Pesquisar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Pesquisar"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Nome do Índice"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Descrição"
@@ -113,6 +113,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"O ficheiro %s não está disponível no seu sistema, por favor visite www."
+"phpmyadmin.net para mais informações."
#: db_create.php:58
#, php-format
@@ -136,7 +138,7 @@ msgstr "Comentários da tabela"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Coluna"
@@ -149,7 +151,7 @@ msgstr "Coluna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -165,7 +167,7 @@ msgstr "Tipo"
msgid "Null"
msgstr "Nulo"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +196,7 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +207,12 @@ msgstr "Comentários"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Não"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +227,7 @@ msgstr "Não"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +246,11 @@ msgstr "Ver o esquema da base de dados"
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada na base de dados"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Selecciona Todas"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Limpa Todas as Selecções"
@@ -270,7 +272,7 @@ msgstr "A base de dados %s foi copiada para %s."
msgid "Rename database to"
msgstr "Alterar o nome da base de dados para"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Comando"
@@ -331,7 +333,7 @@ msgstr "Mudar para a Base de Dados copiada"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -356,7 +358,7 @@ msgstr "Editar ou exporta o esquema relacional (schema)"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabela"
@@ -372,7 +374,7 @@ msgstr "Registos"
msgid "Size"
msgstr "Tamanho"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "em uso"
@@ -398,7 +400,7 @@ msgstr "Última actualização"
msgid "Last check"
msgstr "Última Verificação"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +420,25 @@ msgid "visual builder"
msgstr "Construtor Gráfico"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Ordenação"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
@@ -459,7 +461,7 @@ msgstr "Elim."
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ou"
@@ -488,58 +490,58 @@ msgstr "Usar Tabelas"
msgid "SQL query on database %s :"
msgstr "Comando SQL na base de dados %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Executar Comando SQL"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acesso Negado"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "pelo menos uma das palavras"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "todas as palavras"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "a frase exacta"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "como expressão regular"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Procurar resultados para \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s resultado na tabela %s "
msgstr[1] "%s resultados na tabela %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visualizar"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Apagar os semelhantes para a %s tabela?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -550,65 +552,65 @@ msgstr "Apagar os semelhantes para a %s tabela?"
msgid "Delete"
msgstr "Apagar"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Total: %s resultado"
msgstr[1] "Total: %s resultados"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Pesquisar na Base de Dados"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Palavra(s) ou valor(es) a pesquisar (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Procurar:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "As palavras são separadas pelo caracter espaço (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Dentro de Tabela(s):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Dentro da coluna:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Não foram encontradas tabelas na base de dados"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "A tabela %s foi limpa"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "A Vista %s foi eliminada"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "A tabela %s foi eliminada"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Detecção de Alterações está activa."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Detecção de Alterações está desactivada."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -617,112 +619,112 @@ msgstr ""
"Esta vista tem número de linhas aproximado. Por favor, consulte a "
"%sdocumentação%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vista"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "Replicação"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Soma"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o storage engine por defeito neste MySQL server."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Com os seleccionados:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Nenhum"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Verificar tabelas com overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Vista de impressão"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Limpa"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Verificar tabela"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizar tabela"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparar tabela"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizar tabela"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "Sem bases de dados"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Substituir os dados da tabela pelos do arquivo"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Substituir os dados da tabela pelos do arquivo"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicionario de dados"
@@ -737,9 +739,9 @@ msgstr "Tabelas em tracking"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Base de Dados"
@@ -755,8 +757,8 @@ msgstr "Criado"
msgid "Updated"
msgstr "Actualizado"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Estado"
@@ -815,7 +817,7 @@ msgstr "Introduza cada valor num campo separado."
#: enum_editor.php:57
msgid "+ Restart insertion and add a new value"
-msgstr ""
+msgstr "+ Reiniciar inserção e adicionar um novo valor"
#: enum_editor.php:67
msgid "Output"
@@ -823,7 +825,7 @@ msgstr ""
#: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field"
-msgstr ""
+msgstr "Copie e cole os valores juntos para o campo \"Comprimento/Valores\""
#: export.php:73
msgid "Selected export type has to be saved in file!"
@@ -904,7 +906,7 @@ msgstr "Marcador apagado com sucesso."
msgid "Showing bookmark"
msgstr "Mostrando Marcador"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -932,7 +934,7 @@ msgstr ""
"incremente os tempos de limite de php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -960,29 +962,25 @@ msgstr "Clique para seleccionar"
msgid "Click to unselect"
msgstr "Clique para deseleccionar"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Confirma : "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
#: js/messages.php:32
-#, fuzzy
-#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to DESTROY a complete table!"
-msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
+msgstr "Está prestes a DESTRUIR uma base de dados completa!"
#: js/messages.php:33
-#, fuzzy
-#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to TRUNCATE a complete table!"
-msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
+msgstr "Está prestes a TRUNCAR uma base de dados completa!"
#: js/messages.php:34
msgid "Dropping Event"
@@ -1049,10 +1047,8 @@ msgstr ""
#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
-#, fuzzy
-#| msgid "Any user"
msgid "Add user"
-msgstr "Qualquer utilizador"
+msgstr "Adicionar utilizador"
#: js/messages.php:59
#, fuzzy
@@ -1069,163 +1065,205 @@ msgstr "Removendo os utilizadores seleccionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Escolha do Servidor"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "Comando SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Carregando"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Processando Pedido"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Erro a Processar Pedido"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Apagando Coluna"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Adicionando Chave Primária"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Renomeando Bases de Dados"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Recarregar Base de Dados"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Copiando Bases de Dados"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Mudando Mapa de Caracteres"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "A tabela terá que ter pelo menos uma coluna"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Criar uma Tabela"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Usar Tabelas"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Pesquisando"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "Comando SQL"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "Comando SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Visualizar"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "A apagar %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Esconder Caixa do query"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Mostrar Caixa do query"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Editar em linha"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Escolha do Servidor"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "Comando SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Escolha do Servidor"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processos"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Ligações"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "Comando SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Estatísticas dos registos"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Carregando"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Processando Pedido"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Erro a Processar Pedido"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Apagando Coluna"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Adicionando Chave Primária"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Renomeando Bases de Dados"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Recarregar Base de Dados"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Copiando Bases de Dados"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Mudando Mapa de Caracteres"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "A tabela terá que ter pelo menos uma coluna"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Criar uma Tabela"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Usar Tabelas"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Pesquisando"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "Comando SQL"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "Comando SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Visualizar"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "A apagar %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Esconder Caixa do query"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Mostrar Caixa do query"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Editar em linha"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1233,78 +1271,76 @@ msgstr "Edita"
msgid "Save"
msgstr "Guarda"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
-msgstr ""
+msgstr "Esconder"
-#: js/messages.php:122
-#, fuzzy
+#: js/messages.php:135
msgid "Hide search criteria"
-msgstr "Comando SQL"
+msgstr "Esconder critérios de buca"
-#: js/messages.php:123
-#, fuzzy
+#: js/messages.php:136
msgid "Show search criteria"
-msgstr "Comando SQL"
+msgstr "Mostrar critérios de busca"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Seleccione chave de referencia"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Seleccione Foreign Key"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
-msgstr ""
+msgstr "Por favor seleccione a chave primária ou a chave única "
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Alterar a palavra-passe"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Gerado por"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Alterar a palavra-passe"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Seg"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1312,128 +1348,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Versão do servidor"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Sem bases de dados"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "Dados"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binário "
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1441,176 +1477,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dom"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Seg"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ter"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Sex"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "em uso"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1702,7 +1738,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Base de Dados"
@@ -1769,25 +1805,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabela %s renomeada para %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1819,9 +1855,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1830,7 +1865,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Bemvindo ao %s"
@@ -1979,7 +2013,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabelas"
@@ -2065,7 +2099,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Servidor"
@@ -2113,7 +2146,7 @@ msgid "Documentation"
msgstr "Documentação"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Comando SQL"
@@ -2121,119 +2154,119 @@ msgstr "Comando SQL"
msgid "MySQL said: "
msgstr "Mensagens do MySQL : "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Saltar Explicar SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "sem código PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Saltar a validação SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%B-%Y às %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Inicio"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar para a Base de Dados "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2245,42 +2278,42 @@ msgstr ""
msgid "Structure"
msgstr "Estrutura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Insere"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operações"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "Directoria no servidor web para fazer upload"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Não é possivel alcançar a directoria que configurou para fazer upload"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2638,7 +2671,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4615,7 +4648,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilégios"
@@ -4627,7 +4660,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4831,9 +4864,9 @@ msgstr "Configurar o Mapa de Caracteres do ficheiro:"
msgid "Compression:"
msgstr "Compressão"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Nenhum"
@@ -4968,39 +5001,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Adicionar/Remover Campos"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Clique para seleccionar"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "registos começando em"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (cabeçalhos rodados)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "em modo %s com cabeçalhos repetidos a cada %s células"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Ordenar por chave"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5013,103 +5066,103 @@ msgstr "Ordenar por chave"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Operações"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Texto parcial"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Texto inteiro"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Esquema relacional"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Esquema relacional"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformação do navegador"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Registo eliminado"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Termina"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "na pesquisa"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Mostrando registos "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "O Query demorou %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Muda"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Vista de impressão (com texto inteiro)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Mostrar o esquema de PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Versão do servidor"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link não encontrado"
@@ -5155,7 +5208,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Estado da InnoDB"
@@ -5621,7 +5674,7 @@ msgstr "MIME-types disponíveis"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Máquina"
@@ -5831,7 +5884,7 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Gerado por"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL não retornou nenhum registo."
@@ -5990,7 +6043,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Sem alterações"
@@ -6322,14 +6375,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variável"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valor"
@@ -6568,21 +6621,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr " Binário "
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variáveis"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Mapas de Caracteres"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6631,11 +6684,11 @@ msgstr ""
msgid "Columns"
msgstr "Nome dos Campos"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Marcar este comando SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Deixar todos os utilizadores acederem a este marcador"
@@ -6869,7 +6922,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Acrescenta um utilizador"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tempo"
@@ -7037,7 +7090,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Utilizador"
@@ -7312,7 +7365,7 @@ msgstr "Criar"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "Operações"
@@ -7499,18 +7552,18 @@ msgstr "A tabela \"%s\" não existe!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Qtd Campos"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncar os Queries mostrados"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Mostrar queries completos"
@@ -8045,7 +8098,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8185,266 +8238,250 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+msgid "Refresh rate"
+msgstr "Gerado por"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "em uso"
+msgstr[1] "em uso"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "por segundo"
+msgstr[1] "por segundo"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Tipo de Query"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Instrucções de inserção múltiplas"
-#: server_status.php:236
+#: server_status.php:269
#, fuzzy
msgid "Key cache"
msgstr "Tipo de Query"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Mostra tabelas"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informação de Runtime"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Escolha do Servidor"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Estatísticas dos registos"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-msgid "Refresh rate"
-msgstr "Gerado por"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "por segundo"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "por segundo"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "em uso"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Mantendo a palavra-passe "
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Mostra tabelas"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relações"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "por hora"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "por segundo"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tipo de Query"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Relações"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Tráfego"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Recebido"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Ligações"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Tentativas falhadas"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processos"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8452,78 +8489,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8531,7 +8568,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8539,42 +8576,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8582,33 +8619,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8617,227 +8654,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8845,99 +8882,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8945,18 +8982,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8964,7 +9001,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9088,7 +9125,7 @@ msgstr "Variáveis do servidor e configurações"
msgid "Session value"
msgstr "Valor de sessão"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valor Global"
@@ -9367,42 +9404,42 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
#, fuzzy
msgid "Showing SQL query"
msgstr "Mostrar queries completos"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validar SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiqueta"
@@ -9787,25 +9824,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Seleccione os campos (no mínimo 1)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Número de registos por página"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Ordem de visualização:"
@@ -10103,12 +10140,12 @@ msgstr ""
msgid "Rename view to"
msgstr "Renomeia a vista para "
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "seconds"
+#~ msgstr "por segundo"
+
#~ msgid "Query results"
#~ msgstr "Resultado SQL"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "Limpa"
@@ -10116,8 +10153,6 @@ msgstr "Renomeia a vista para "
#~ msgid "Show processes"
#~ msgstr "Mostra os Processos"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Limpa"
@@ -10136,13 +10171,9 @@ msgstr "Renomeia a vista para "
#~ "Query statistics : Since its startup, %s queries have been sent to "
#~ "the server."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "O privilégios foram recarregados com sucesso."
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Tipo de Query"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 5dee6c3bc8..47d3105d0c 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,9 +3,9 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-04-14 17:44+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-15 13:55+0200\n"
+"Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n"
"Language-Team: brazilian_portuguese \n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Mostrar todos"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"fechado a janela principal ou as opções de segurança do seu navegador estão "
"configuradas para bloquear a comunicação entre janelas."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Procurar"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Procurar"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Nome chave"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Descrição"
@@ -137,7 +137,7 @@ msgstr "Comentários da tabela"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Coluna"
@@ -150,7 +150,7 @@ msgstr "Coluna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -166,7 +166,7 @@ msgstr "Tipo"
msgid "Null"
msgstr "Nulo"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Comentários"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Não"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Não"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Ver o esquema do Banco de Dados"
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada no Banco de Dados"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Selecionar Todos"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Desmarcar Todos"
@@ -271,7 +271,7 @@ msgstr "Banco de Dados %s copiado para %s"
msgid "Rename database to"
msgstr "Renomear Banco de Dados para"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Comando"
@@ -332,7 +332,7 @@ msgstr "Mudar para o Banco de Dados copiado"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Editar ou exportar esquema relacional"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabela"
@@ -373,7 +373,7 @@ msgstr "Registros"
msgid "Size"
msgstr "Tamanho"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "em uso"
@@ -399,7 +399,7 @@ msgstr "Última atualização"
msgid "Last check"
msgstr "Última verificação"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -419,25 +419,25 @@ msgid "visual builder"
msgstr "construtor visual"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Ordenar"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
@@ -460,7 +460,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ou"
@@ -489,60 +489,60 @@ msgstr "Usar tabelas"
#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s :"
-msgstr "Consulta no Banco de Dados %s :"
+msgstr "Consulta SQL ao Banco de Dados %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Enviar consulta SQL"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acesso negado"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "pelo menos uma das palavras"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "todas as palavras"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "a frase exata"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "como expressão regular"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Resultados da pesquisa para \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s resultado dentro da tabela %s "
msgstr[1] "%s resultados dentro da tabela %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visualizar"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Excluir correspondentes para a tabela %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -553,65 +553,65 @@ msgstr "Excluir correspondentes para a tabela %s?"
msgid "Delete"
msgstr "Remover"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Total: %s resultado"
msgstr[1] "Total: %s resultados"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Procurar no Banco de Dados"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Encontrar:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Palavras são separadas por um caracter de espaço (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Dentro da(s) tabela(s):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Dentro do campo:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Nenhuma tabela encontrada no banco de dados"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s foi esvaziada"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Visão %s foi apagada"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s foi eliminada"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Rastreamento está ativo."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Rastreamento não está ativo."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -620,111 +620,106 @@ msgstr ""
"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a "
"%sdocumentação%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Visão"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replicação"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Soma"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
-msgstr "%s é o stored engine padrão neste servidor MySQL."
+msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Com marcados:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Marcar todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desmarcar todos"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Verificar sobre-carga"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Visualização para impressão"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Limpar"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Eliminar"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Verificar tabela"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Otimizar tabela"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparar tabela"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizar tabela"
-#: db_structure.php:521
-#, fuzzy
+#: db_structure.php:522
msgid "Add prefix to table"
-msgstr "Sem bases"
+msgstr "Adicionar prefixo à tabela"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
-#, fuzzy
-#| msgid "Replace table data with file"
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
-msgstr "Substituir os dados da tabela pelos do arquivo"
+msgstr "Substituir prefixo da tabela"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
-#, fuzzy
-#| msgid "Replace table data with file"
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
-msgstr "Substituir os dados da tabela pelos do arquivo"
+msgstr "Copiar tabela com o prefixo"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicionário de dados"
@@ -739,9 +734,9 @@ msgstr "Tabelas rastreadas"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Banco de Dados"
@@ -757,8 +752,8 @@ msgstr "Criado"
msgid "Updated"
msgstr "Atualizado"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -787,7 +782,7 @@ msgstr "Versões"
#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
-msgstr "Relatório de rastreamento"
+msgstr "Relatório de monitoramento"
#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
@@ -800,7 +795,7 @@ msgstr "Tabelas não monitoradas"
#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
#: tbl_structure.php:624
msgid "Track table"
-msgstr "Rastrear tabela"
+msgstr "Monitorar tabela"
#: db_tracking.php:229
msgid "Database Log"
@@ -903,7 +898,7 @@ msgstr "O marcador foi removido."
msgid "Showing bookmark"
msgstr "Exibindo marcadores"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -931,7 +926,7 @@ msgstr ""
"aumente o tempo limite do PHP."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -958,29 +953,25 @@ msgstr "Clique para selecionar"
msgid "Click to unselect"
msgstr "Clique para desmarcar"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "O comando \"DROP DATABASE\" está desabilitado."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Você realmente deseja"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
#: js/messages.php:32
-#, fuzzy
-#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to DESTROY a complete table!"
-msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
+msgstr "Você está prestes à DESTRUIR completamente a tabela"
#: js/messages.php:33
-#, fuzzy
-#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to TRUNCATE a complete table!"
-msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
+msgstr "Você está prestes à TRUNCAR completamente uma tabela!"
#: js/messages.php:34
msgid "Dropping Event"
@@ -988,7 +979,7 @@ msgstr "Remoção de eventos"
#: js/messages.php:35
msgid "Dropping Procedure"
-msgstr "Remoção de Procedures"
+msgstr "Remoção de procedimentos"
#: js/messages.php:37
msgid "Deleting tracking data"
@@ -1004,7 +995,7 @@ msgstr "Esta operação pode ser demorada. Deseja prosseguir?"
#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
-msgstr "Você está prestes a desativar um repositório BLOB."
+msgstr "Você está prestes a DESATIVAR um repositório BLOB."
#: js/messages.php:43
#, php-format
@@ -1046,10 +1037,8 @@ msgstr "As senhas não são iguais!"
#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
-#, fuzzy
-#| msgid "Any user"
msgid "Add user"
-msgstr "Qualquer usuário"
+msgstr "Adicionar usuário"
#: js/messages.php:59
msgid "Reloading Privileges"
@@ -1064,173 +1053,197 @@ msgstr "Remover os usuários selecionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Seleção do Servidor"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "consulta SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Carregando"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Processando a requisição"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Erro no processamento da requisição"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Excluindo coluna"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Adicionar chave primária"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Renomeando o Banco de Dados"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Recarregar o Banco de Dados"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Copiar Banco de Dados"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Modificando charset"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "Tabela deve ter pelo menos um campo."
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Criar tabela"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Usar tabelas"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Procurar"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Ocultar critério de pesquisa"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Exibir critério de pesquisa"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Visualizar"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Eliminando %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Ocultar caixa de consulta"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Mostrar caixa de consulta"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Engines"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Seleção do Servidor"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "consulta SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Seleção do Servidor"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processos"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Conexões"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Consultas SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Estatísticas de Query"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Carregando"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Processando a requisição"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Erro no processamento da requisição"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Excluindo coluna"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Adicionar chave primária"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Renomeando o Banco de Dados"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Recarregar o Banco de Dados"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Copiar Banco de Dados"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Modificando charset"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "A tabela deve ter pelo menos uma coluna"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Criar nova tabela"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Inserir tabela"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Buscando"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Ocultar resultados da pesquisa"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Mostrar resultados da pesquisa"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Navegação"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Apagando %s"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Ocultar caixa de consulta"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Mostrar caixa de consulta"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Editar linha"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1238,184 +1251,183 @@ msgstr "Editar"
msgid "Save"
msgstr "Salvar"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ocultar"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Ocultar critério de pesquisa"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Exibir critério de pesquisa"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Seleciona chave referenciada"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Selecionar Chave Estrangeira"
-#: js/messages.php:131
+#: js/messages.php:144
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:132 pmd_general.php:87 tbl_relation.php:545
-#, fuzzy
-#| msgid "Choose field to display"
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
-msgstr "Escolha o campo para exibir"
+msgstr "Marque a coluna para exibir"
-#: js/messages.php:133
+#: js/messages.php:146
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 ""
+"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:136
+#: js/messages.php:149
msgid "Add an option for column "
-msgstr ""
+msgstr "Adicionar uma opção para a coluna"
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Gerar Senha"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Gerar"
-#: js/messages.php:141
-#, fuzzy
-#| msgid "Change password"
+#: js/messages.php:154
msgid "Change Password"
-msgstr "Alterar a senha"
+msgstr "Alterar senha"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Mais"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
+"Uma nova versão do phpMyAdmin está disponível e você deve fazer a "
+"atualização. A nova versão é %s, lançada em %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ". última versão estável:"
-#: js/messages.php:150
-#, fuzzy
+#: js/messages.php:163
msgid "up to date"
-msgstr "Sem bases"
+msgstr "até à data"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Concluído"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Hoje"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Janeiro"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Fevereiro"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Março"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Abril"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Maio"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Junho"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Julho"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Agosto"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Setembro"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Outubro"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Novembro"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Dezembro"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1423,166 +1435,166 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Segunda"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Terça"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Quarta"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Quinta"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Sexta"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Segundo"
@@ -1677,7 +1689,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Banco de Dados"
@@ -1689,45 +1701,37 @@ msgid "Error"
msgstr "Erro"
#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
+#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d linha(s) afetadas."
+msgstr[0] "%1$d linha afetada."
msgstr[1] "%1$d linha(s) afetadas."
#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
+#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d linhas(s) excluídas."
+msgstr[0] "%1$d linhas excluída."
msgstr[1] "%1$d linhas(s) excluídas."
#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
+#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d linha(s) inseridas."
+msgstr[0] "%1$d linha inserida."
msgstr[1] "%1$d linha(s) inseridas."
#: libraries/RecentTable.class.php:113
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save recent table"
-msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
+msgstr "Não foi possível salvar a tabela recente"
#: libraries/RecentTable.class.php:148
-#, fuzzy
msgid "Recent tables"
-msgstr "Sem tabelas"
+msgstr "tabelas recentes"
#: libraries/RecentTable.class.php:154
-#, fuzzy
-#| msgid "There are no configured servers"
msgid "There are no recent tables"
-msgstr "Não existem servidores configurados"
+msgstr "Não existem tabelas recentes"
#: libraries/StorageEngine.class.php:194
msgid ""
@@ -1751,27 +1755,27 @@ msgstr "%s está desabilitado neste servidor MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Esse servidor MySQL não suporta o stored engine %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Banco de Dados inválido"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Nome de tabela inválida"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Erro ao renomear tabela %1$s para %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabela %s renomeada para %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
-msgstr ""
+msgstr "Não foi possível salvar as preferências da tabela"
#: libraries/Theme.class.php:160
#, php-format
@@ -1801,10 +1805,9 @@ msgstr "Tema %s não encontrado!"
msgid "Theme path not found for theme %s!"
msgstr "Encontrado caminho inválido para o tema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Estilo"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1812,7 +1815,6 @@ msgstr "Não pode conectar: configurações inválidas."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Bem vindo ao %s"
@@ -1852,7 +1854,7 @@ msgstr "Documentação do phpMyAdmin "
#: libraries/auth/cookie.auth.lib.php:243
#: libraries/auth/cookie.auth.lib.php:244
msgid "You can enter hostname/IP address and port separated by space."
-msgstr ""
+msgstr "Você pode digitar a url/IP e a porta separados por um espaço."
#: libraries/auth/cookie.auth.lib.php:243
msgid "Server:"
@@ -1899,14 +1901,13 @@ msgid "Wrong username/password. Access denied."
msgstr "Usuário ou senha incorreta. Acesso negado."
#: libraries/auth/signon.auth.lib.php:87
-#, fuzzy
msgid "Can not find signon authentication script:"
-msgstr "Falha na autenticação de hardware"
+msgstr "Não é possível encontrar o script de autenticação de logon"
#: libraries/auth/swekey/swekey.auth.lib.php:118
#, php-format
msgid "File %s does not contain any key id"
-msgstr ""
+msgstr "Arquivo %s não contém qualquer identificação da chave"
#: libraries/auth/swekey/swekey.auth.lib.php:157
#: libraries/auth/swekey/swekey.auth.lib.php:180
@@ -1915,7 +1916,7 @@ msgstr "Falha na autenticação de hardware"
#: libraries/auth/swekey/swekey.auth.lib.php:166
msgid "No valid authentication key plugged"
-msgstr ""
+msgstr "Nenhuma chave de autenticação válida foi conectada"
#: libraries/auth/swekey/swekey.auth.lib.php:202
msgid "Authenticating..."
@@ -1923,21 +1924,19 @@ msgstr "Autenticando..."
#: libraries/blobstreaming.lib.php:241
msgid "PBMS error"
-msgstr ""
+msgstr "Erro PBMS"
#: libraries/blobstreaming.lib.php:267
-#, fuzzy
-#| msgid "MySQL connection collation"
msgid "PBMS connection failed:"
-msgstr "Collation de conexão do MySQL"
+msgstr "Falha na conexão PBMS:"
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
-msgstr ""
+msgstr "o PBMS falhou na obtenção de informações BLOB:"
#: libraries/blobstreaming.lib.php:320
msgid "get BLOB Content-Type failed"
-msgstr ""
+msgstr "a obtenção do Tipo de conteúdo do BLOB falhou"
#: libraries/blobstreaming.lib.php:347
msgid "View image"
@@ -1958,7 +1957,7 @@ msgstr "Baixar arquivo"
#: libraries/blobstreaming.lib.php:421
#, php-format
msgid "Could not open file: %s"
-msgstr ""
+msgstr "Não foi possível abrir o arquivo: %s"
#: libraries/bookmark.lib.php:83
msgid "shared"
@@ -1966,7 +1965,7 @@ msgstr "compartilhado"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabelas"
@@ -1989,19 +1988,16 @@ msgid "Overhead"
msgstr "Sobrecarga"
#: libraries/build_html_for_db.lib.php:93
-#, fuzzy
msgid "Jump to database"
-msgstr "Sem bases"
+msgstr "Ir para banco de dados"
#: libraries/build_html_for_db.lib.php:130
msgid "Not replicated"
-msgstr ""
+msgstr "Não aplicavel"
#: libraries/build_html_for_db.lib.php:136
-#, fuzzy
-#| msgid "Replication"
msgid "Replicated"
-msgstr "Replicação"
+msgstr "Replicado"
#: libraries/build_html_for_db.lib.php:150
#, php-format
@@ -2054,7 +2050,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Servidor"
@@ -2102,7 +2097,7 @@ msgid "Documentation"
msgstr "Documentação"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "consulta SQL"
@@ -2110,121 +2105,119 @@ msgstr "consulta SQL"
msgid "MySQL said: "
msgstr "Mensagens do MySQL : "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
-msgstr ""
+msgstr "Falha ao conectar ao validador SQL"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Pular Explicação SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "sem código PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Atualizar"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Pular validação SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
-msgstr ""
+msgstr "Na linha de edição da presente consulta"
-#: libraries/common.lib.php:1232
-#, fuzzy
-#| msgid "Engines"
+#: libraries/common.lib.php:1248
msgid "Inline"
-msgstr "Engines"
+msgstr "na linha"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Perfil"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d/%m/%Y às %Hh%Mmin"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Início"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Ir para o Banco de Dados "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2236,42 +2229,42 @@ msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s"
msgid "Structure"
msgstr "Estrutura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Inserir"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operações"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Procurar no seu computador:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Selecionar a partir do diretório de upload do servidor %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"O diretório que você especificou para subir arquivos não foi encontrado."
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Não existem arquivos para fazer upload"
@@ -2282,17 +2275,15 @@ msgstr "Ambos"
#: libraries/config.values.php:47
msgid "Nowhere"
-msgstr ""
+msgstr "Lugar nenhum"
#: libraries/config.values.php:47
msgid "Left"
-msgstr ""
+msgstr "Esquerda"
#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
msgid "Right"
-msgstr "Altura"
+msgstr "Direita"
#: libraries/config.values.php:75
msgid "Open"
@@ -2353,24 +2344,23 @@ msgid "both of the above"
msgstr "ambos acima"
#: libraries/config.values.php:123
-#, fuzzy
msgid "neither of the above"
-msgstr "nenhuma das acima"
+msgstr "nenhuma das acima."
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
msgid "Not a positive number"
-msgstr ""
+msgstr "Número não positivo"
#: libraries/config/FormDisplay.class.php:84
#: libraries/config/validate.lib.php:435
msgid "Not a non-negative number"
-msgstr ""
+msgstr "Não é um número negativo"
#: libraries/config/FormDisplay.class.php:85
#: libraries/config/validate.lib.php:409
msgid "Not a valid port number"
-msgstr ""
+msgstr "Número de porta inválido"
#: libraries/config/FormDisplay.class.php:86
#: libraries/config/FormDisplay.class.php:574
@@ -2387,7 +2377,7 @@ msgstr "O valor precisa ser igual ou menor que %s"
#: libraries/config/FormDisplay.class.php:538
#, php-format
msgid "Missing data for %s"
-msgstr ""
+msgstr "dado faltante para %s"
#: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740
@@ -2398,21 +2388,21 @@ msgstr "indisponível"
#: libraries/config/FormDisplay.class.php:741
#, php-format
msgid "\"%s\" requires %s extension"
-msgstr ""
+msgstr "\"%s\" requer a extenção %s "
#: libraries/config/FormDisplay.class.php:755
#, php-format
msgid "import will not work, missing function (%s)"
-msgstr ""
+msgstr "Importação não funcionou, função faltante (%s)"
#: libraries/config/FormDisplay.class.php:759
#, php-format
msgid "export will not work, missing function (%s)"
-msgstr ""
+msgstr "exportação não vai funcionar, faltando função (%s)"
#: libraries/config/FormDisplay.class.php:766
msgid "SQL Validator is disabled"
-msgstr ""
+msgstr "Validador SQL desativado"
#: libraries/config/FormDisplay.class.php:773
msgid "SOAP extension not found"
@@ -2426,6 +2416,7 @@ msgstr "máximo %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
msgstr ""
+"Essa configuração está desativada, não será aplicado à sua configuração"
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
@@ -2435,16 +2426,16 @@ msgstr "Desabilitado"
#: libraries/config/FormDisplay.tpl.php:248
#, php-format
msgid "Set value: %s"
-msgstr ""
+msgstr "Definir valor: %s"
#: libraries/config/FormDisplay.tpl.php:253
#: libraries/config/messages.inc.php:356
msgid "Restore default value"
-msgstr ""
+msgstr "Restaurar valor padrão"
#: libraries/config/FormDisplay.tpl.php:269
msgid "Allow users to customize this value"
-msgstr ""
+msgstr "Permitir a todos os usuários alterar esse valor"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
@@ -2454,7 +2445,7 @@ msgstr "Restaurar"
#: libraries/config/messages.inc.php:17
msgid "Improves efficiency of screen refresh"
-msgstr ""
+msgstr "Melhora a eficiência de atualização da tela"
#: libraries/config/messages.inc.php:18
msgid "Enable Ajax"
@@ -2464,11 +2455,12 @@ msgstr "Habilitar Ajax"
msgid ""
"If enabled user can enter any MySQL server in login form for cookie auth"
msgstr ""
+"Se o usuário habilitado pode entrar em qualquer servidor MySQL em formulário "
+"de login por autenticação cookie"
#: libraries/config/messages.inc.php:20
-#, fuzzy
msgid "Allow login to any MySQL server"
-msgstr "Não foi possível se logar no servidor MySQL"
+msgstr "Permitir login para qualquer servidor MySQL"
#: libraries/config/messages.inc.php:21
msgid ""
@@ -2476,10 +2468,13 @@ msgid ""
"inside a frame, and is a potential [strong]security hole[/strong] allowing "
"cross-frame scripting attacks"
msgstr ""
+"Ativando essa opção permite uma página localizada em um domínio diferente "
+"para chamar phpMyAdmin dentro de um quadro, e é um potencial [strong] falha "
+"de segurança [/strong], que permite ataques de script cross-frame"
#: libraries/config/messages.inc.php:22
msgid "Allow third party framing"
-msgstr ""
+msgstr "Permitir elaboração de terceiros"
#: libraries/config/messages.inc.php:23
msgid "Show "Drop database" link to normal users"
@@ -2627,7 +2622,7 @@ msgstr "Renomear Banco de Dados para"
msgid "Show binary contents as HEX by default"
msgstr "Mostrar conteúdo binário como HEX por padrão"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Mostrar conteúdo binário como HEX"
@@ -4596,7 +4591,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilégios"
@@ -4608,7 +4603,7 @@ msgstr "Rotinas"
msgid "Return type"
msgstr "Tipo de returno"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4817,9 +4812,9 @@ msgstr "Conjunto de caracteres do arquivo"
msgid "Compression:"
msgstr "Compressão"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Nenhum"
@@ -4969,39 +4964,59 @@ msgstr ""
msgid "Language"
msgstr "Linguagem"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Adicionar/Remover colunas"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Clique para selecionar"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d não é um número de linha válido."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "registro(s) começando de"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (cabeçalhos rotacionados)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "no modo %s e repetindo cabeçalhos após %s células"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Ordenar pela chave"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5014,101 +5029,101 @@ msgstr "Ordenar pela chave"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opções"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Textos parciais"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Textos completos"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Chave de relação"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Esquema relacional"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Mostrar conteúdo binário"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
#, fuzzy
msgid "Show BLOB contents"
msgstr "Exibir conteúdo BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformações do navegador"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Copiar"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Registro eliminado"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Matar"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "na consulta"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Mostrando registros "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Consulta levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Alterar"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operações resultantes das consultas"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Ver impressão (com textos completos)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Exibir gráfico"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Criar usuário"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link não encontrado"
@@ -5158,7 +5173,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Status do InnoDB"
@@ -5645,7 +5660,7 @@ msgstr "MIME-type disponíveis"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Servidor"
@@ -5855,7 +5870,7 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Gerado por"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6019,7 +6034,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Adicionar índice"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Sem Mudança"
@@ -6351,14 +6366,14 @@ msgid "Slave status"
msgstr "Exibir status dos escravos"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variáveis"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valor"
@@ -6598,20 +6613,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Log binário"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variáveis"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Conjuntos de caracteres"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Engines"
@@ -6660,11 +6675,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Nome das colunas"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Gravar essa consulta SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Deixar qualquer usuário acessar esse marcador"
@@ -6902,7 +6917,7 @@ msgstr "Definição da PARTIÇÃO"
msgid "+ Add a new value"
msgstr "Adicionar novo usuário"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tempo"
@@ -7144,7 +7159,7 @@ msgid "Protocol version"
msgstr "Versão do Protocolo"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Usuário"
@@ -7427,7 +7442,7 @@ msgstr "Criar"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operador"
@@ -7624,17 +7639,17 @@ msgstr "A tabela \"%s\" não existe!"
msgid "Select binary log to view"
msgstr "Selecionar log binário para exibir"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Arquivos"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncar as consultas SQL exibidas"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Mostrar consultas completas"
@@ -8166,7 +8181,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Exibir status dos escravos"
@@ -8307,12 +8322,34 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Atualizar"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minuto"
+msgstr[1] "Minuto"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Segundo"
+msgstr[1] "Segundo"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Processo %s foi morto com sucesso."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8320,194 +8357,160 @@ msgstr ""
"phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já "
"esteja fechado."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Manipulador"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Consulta do cache"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Processos"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Dados temporários"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Inserções demoradas"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Chave do cache"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Junções"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Ordenando"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Coordenador da transação"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Nivelar (fechar) todas as tabelas"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Exibir tabelas abertas"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Exibir servidores escravos"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Exibir status dos escravos"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Nivelar cache da consulta"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informações de Runtime"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Seleção do Servidor"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Estatísticas do registros"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Atualizar"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Segundo"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Segundo"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuto"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Não mudar a senha"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Exibir tabelas abertas"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relações"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "por hora"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "por minuto"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "por segundo"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tipo de consulta"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Replicação"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Tráfego"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8515,45 +8518,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Recebido"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Enviar"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Conexões"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "máx. de conexões concorrentes"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Tentativas falharam"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processos"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8563,16 +8562,16 @@ msgstr ""
"excederam o valor do binlog_cache_size e usaram o arquivo temporário para "
"armazenar enunciados da transação."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8584,11 +8583,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Quantos arquivos temporários o MySQL tinha criado."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8596,7 +8595,7 @@ msgstr ""
"O número de tabelas temporárias na memória criadas automaticamente pelo "
"servidor enquanto executava os enunciados."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8604,7 +8603,7 @@ msgstr ""
"O número de linhas escritas com INSERT DELAYED para cada erro ocorrido "
"(provavelmente chave duplicada)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8612,23 +8611,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "O número de linhas INSERT DELAYED escritas."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "O número de enunciados FLUSH executados."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "O número de enunciados COMMIT internos."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8638,7 +8637,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:854
+#: server_status.php:863
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, "
@@ -8648,7 +8647,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:855
+#: server_status.php:864
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."
@@ -8657,7 +8656,7 @@ msgstr ""
"alto, é uma boa indicação de que suas consultas e tabelas estejam "
"corretamente indexadas."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8667,7 +8666,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8675,7 +8674,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:858
+#: server_status.php:867
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 "
@@ -8688,7 +8687,7 @@ msgstr ""
"faça a varredura de tabelas inteiras ou você tem junções que não usam as "
"chaves corretamente."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8700,37 +8699,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "O número de enunciados ROLLBACK internos."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "O número de páginas atualmente sujas."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "O número de páginas livres."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8740,7 +8739,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:868
+#: server_status.php:877
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 "
@@ -8752,11 +8751,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Tamanho total do buffer pool, em páginas."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8765,7 +8764,7 @@ msgstr ""
"uma consulta faz a varredura de uma parcela grande de uma tabela mas na "
"ordem aleatória."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8773,11 +8772,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:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8785,7 +8784,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:874
+#: server_status.php:883
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 "
@@ -8799,55 +8798,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:875
+#: server_status.php:884
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:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "O número de operações fsync() à fazer."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "O número atual de operações fsync() pendentes."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "O número atual de leituras pendentes."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "O número atual de escritas pendentes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "O montante de leitura de dados à fazer, em bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "O número total de dados lidos."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "O número total de dados escritos."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "O montante de escrita de dados à fazer, em bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8855,35 +8854,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "O número de requisições de escrita de log."
-#: server_status.php:888
+#: server_status.php:897
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:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "O número de arquivos de log fsyncs pendentes."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Escrita de arquivos de log pendentes."
-#: server_status.php:892
+#: server_status.php:901
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:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "O número de páginas criadas."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8892,52 +8891,52 @@ msgstr ""
"contados em páginas; o tamanho de página permite que sejam facilmente "
"convertidos em bytes."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "O número de páginas lidas."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "O número de páginas escritas."
-#: server_status.php:897
+#: server_status.php:906
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:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "O número de linhas deletadas de tabelas InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "O número de linhas inseridas em tabelas InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "O número de linhas lidas de tabelas InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "O número de linhas atualizadas em tabelas InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8945,7 +8944,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:907
+#: server_status.php:916
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."
@@ -8953,7 +8952,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:908
+#: server_status.php:917
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 "
@@ -8963,11 +8962,11 @@ msgstr ""
"indica o número máximo de blocos que estiveram sempre em uso em algum "
"momento."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8977,15 +8976,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8996,18 +8995,18 @@ msgstr ""
"a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi "
"compilada ainda."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9015,39 +9014,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "O número de arquivos que estão abertos."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "O número de tabelas que estão abertas."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "O montante de memória livre para a consulta do cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "O número de hits do cache."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "O número de consultas adicionadas no cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9060,7 +9059,7 @@ msgstr ""
"recentemente\" (LRU - least recently used) para decidir qual consulta "
"remover do cache."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9068,19 +9067,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "O número de consultas registradas no cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "O número total de blocos na consulta do cache."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "O status da replicação à prova de falhas (não implementado)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9088,13 +9087,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9103,7 +9102,7 @@ msgstr ""
"após cada linha. (Se este não for 0, você deve cuidadosamente verificar os "
"índices de suas tabelas.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9111,16 +9110,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9128,11 +9127,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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9140,12 +9139,12 @@ msgstr ""
"O número de processos que levaram mais que slow_launch_time segundos para "
"serem criadas."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9155,24 +9154,24 @@ msgstr ""
"valor for alto, você deve considerar aumentar o valor da variável "
"sort_buffer_size do sistema."
-#: server_status.php:940
+#: server_status.php:949
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:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "O número de linhas ordenadas."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9184,7 +9183,7 @@ msgstr ""
"performance, você precisa primeiramente otimizar suas consultas e então, ou "
"dividir sua tabela ou usar replicação."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9194,11 +9193,11 @@ msgstr ""
"ser calculada como Threads_created/conexões. Se este valor for vermelho você "
"deve aumentar seu thread_cache_size"
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "O número de conexões atualmente abertas."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9210,7 +9209,7 @@ msgstr ""
"isso não da um aumento notável de performance se você tem uma boa "
"implementação de processos.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "O número de processos que não estão dormindo."
@@ -9334,7 +9333,7 @@ msgstr "Variáveis e configurações do servidor"
msgid "Session value"
msgstr "Valor da sessão"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valor global"
@@ -9614,39 +9613,39 @@ msgstr "A chave é muito curta, você deveria ter pelo menos 8 caracteres."
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Visualizar valores estrangeiros"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id da linha inserida: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Exibindo como código PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Exibindo consulta SQL"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas com o índice da tabela `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Nome"
@@ -10036,25 +10035,25 @@ msgstr "Restrição de chave estrangeira"
msgid "No rows selected"
msgstr "Nenhum registro selecionado"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Selecionar os campos (no mínimo 1)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Condição de Pesquisa (complemento da cláusula \"onde\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "registros por página"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Ordenado por:"
@@ -10341,7 +10340,7 @@ msgstr "Você não tem direitos suficientes para estar aqui agora!"
#: user_password.php:110
msgid "The profile has been updated."
-msgstr "A configuração foi atualizada."
+msgstr "O perfíl foi atualizado."
#: view_create.php:141
msgid "VIEW name"
@@ -10351,8 +10350,12 @@ msgstr "Nome da VISÃO"
msgid "Rename view to"
msgstr "Renomear a visão para "
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Estilo"
+
+#~ msgid "seconds"
+#~ msgstr "Segundo"
+
#~ msgid "Query results"
#~ msgstr "Operações resultantes das consultas"
@@ -10372,8 +10375,6 @@ msgstr "Renomear a visão para "
#~ msgid "Show processes"
#~ msgstr "Mostrar os Processos"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Restaurar"
@@ -10392,15 +10393,9 @@ msgstr "Renomear a visão para "
#~ "Estatísticas das consultas : Desde o início, %s consultas foram "
#~ "enviadas para o servidor."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Os privilégios foram recarregados com sucesso."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -10415,8 +10410,6 @@ msgstr "Renomear a visão para "
#~ msgid "Title"
#~ msgstr "Título"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Tipo de consulta"
diff --git a/po/ro.po b/po/ro.po
index 2fb635cd96..be88d85b1a 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: romanian \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Arată toate"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"închisă, sau fereastra-părinte blochează ferestrele din cauza securității "
"sistemului."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Caută"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Caută"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Nume cheie"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Descriere"
@@ -138,7 +138,7 @@ msgstr "Comentarii tabel"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -153,7 +153,7 @@ msgstr "Denumirile coloanelor"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -169,7 +169,7 @@ msgstr "Tip"
msgid "Null"
msgstr "Nul"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -198,7 +198,7 @@ msgstr "Trimitere la"
msgid "Comments"
msgstr "Comentarii"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -209,12 +209,12 @@ msgstr "Comentarii"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nu"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -229,7 +229,7 @@ msgstr "Nu"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -248,11 +248,11 @@ msgstr "Vizualizarea schemei bazei de date"
msgid "No tables found in database."
msgstr "Nu s-a găsit nici un tabel în baza de date."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Selectează tot"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Deselectează tot"
@@ -274,7 +274,7 @@ msgstr "Baza de date %s a fost copiata la %s"
msgid "Rename database to"
msgstr "Redenumire bază de date în"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Comanda"
@@ -338,7 +338,7 @@ msgstr "Schimbă la tabela copiată"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -368,7 +368,7 @@ msgstr "Schema relațională"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabel"
@@ -384,7 +384,7 @@ msgstr "Linie"
msgid "Size"
msgstr "Mărime"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "în folosință"
@@ -410,7 +410,7 @@ msgstr "Ultima actualizare"
msgid "Last check"
msgstr "Ultima verficare"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -432,25 +432,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sortare"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Crescătoare"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Descrescător"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Afișează"
@@ -473,7 +473,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Sau"
@@ -506,39 +506,39 @@ msgstr "Utilizare tabele"
msgid "SQL query on database %s :"
msgstr "Comandă SQL pe baza de date %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Trimite comanda"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Acces interzis"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "cel puțin unul dintre cuvinte"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "toate cuvintele"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "fraza exactă"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "ca o expresie"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Caută rezultate pentru \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -547,19 +547,19 @@ msgstr[0] "%s rezultat(e) în interiorul tabelului %s "
msgstr[1] "%s rezultat(e) în interiorul tabelului %s "
msgstr[2] "%s rezultat(e) în interiorul tabelului %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Navigare"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
msgid "Delete the matches for the %s table?"
msgstr "Șterge datele urmărite din acest tabel"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -570,7 +570,7 @@ msgstr "Șterge datele urmărite din acest tabel"
msgid "Delete"
msgstr "Șterge"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -579,60 +579,60 @@ msgstr[0] "Total: %s rezultat(e)"
msgstr[1] "Total: %s rezultat(e)"
msgstr[2] "Total: %s rezultat(e)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Caută în baza de date"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Cuvînt/valoare de căutat (metacaracter: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Găsește:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Cuvinte despărțite de un spațiu (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "În interiorul tabelei(lor):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "In interiorul coloanei::"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Nu s-a găsit nici un tabel în baza de date."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabelul %s a fost golit"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Vizualizarea %s a fost eliminată"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabelul %s a fost aruncat"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Monitorizarea este activată"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Monitorizarea nu este activată"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -640,111 +640,111 @@ msgid ""
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vizualizare"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replicare"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Sumă"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Cele bifate:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Marchează toate"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Demarchează toate"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Verificare depășit"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportă"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Vizualizare imprimare"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Golește"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Aruncă"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Verificare tabel"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizare tabel"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparare tabel"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizare tabel"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "Nu sînt baze de date"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Înlocuiește datele tabelului cu fișier"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Înlocuiește datele tabelului cu fișier"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicționar de date"
@@ -760,9 +760,9 @@ msgstr "Tabelele urmărite"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Baza de date"
@@ -778,8 +778,8 @@ msgstr "Creat(ă)"
msgid "Updated"
msgstr "Actualizat(ă)"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Stare"
@@ -932,7 +932,7 @@ msgstr "Eticheta a fost ștearsă."
msgid "Showing bookmark"
msgstr "Afișînd semn de carte"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Semnul de carte %s a fost creat"
@@ -959,7 +959,7 @@ msgstr ""
"won't be able to finish this import unless you increase php time limits."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -987,15 +987,15 @@ msgstr "Click pentru a selecta"
msgid "Click to unselect"
msgstr "Click pentru a deselecta"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Sigur doriți să "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!"
@@ -1098,184 +1098,226 @@ msgstr "Eliminarea utilizatorilor selectați"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Alegerea serverului"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "Comanda SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Local"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Procese"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Redenumire bază de date în"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Redenumire bază de date în"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Copiază baza de date"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Set de caractere"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Creare tabel"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Utilizare tabele"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Caută"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "Comanda SQL"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "Comanda SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Navigare"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Șterge %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "Comanda SQL"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "Comanda SQL"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Motoare"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editare"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Alegerea serverului"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "Comanda SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Alegerea serverului"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procese"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Conexiuni"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "Comanda SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Statisticile rîndului"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Local"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Procese"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Redenumire bază de date în"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Redenumire bază de date în"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Copiază baza de date"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Set de caractere"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Creare tabel"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Utilizare tabele"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Caută"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "Comanda SQL"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "Comanda SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Navigare"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Șterge %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "Comanda SQL"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "Comanda SQL"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Motoare"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1283,77 +1325,77 @@ msgstr "Editare"
msgid "Save"
msgstr "Salveaza"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ascunde"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "Comanda SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "Comanda SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoră"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Alegere cheie referențiată"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Alegeți cheia străină"
-#: js/messages.php:131
+#: js/messages.php:144
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:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generează parolă"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generează"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Schimbare parolă"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Lun"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1363,116 +1405,116 @@ msgstr ""
"procesul de actualizare. Noua versiune este %s, publicată în data de %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "Ultima versiune"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Nu sînt baze de date"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Gata"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Următorul"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Ianuarie"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Februarie"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Martie"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Aprilie"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mai"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Iunie"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Iulie"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Septembrie"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Octombrie"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Noiembrie"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Decembrie"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Ian"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1480,178 +1522,178 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Iun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Iul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Noi"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dum"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Vin"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Dum"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Joi"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Vin"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sâm"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dum"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lun"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mie"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Joi"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Vin"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sâm"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "în folosință"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1744,7 +1786,7 @@ msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Baze de date"
@@ -1820,25 +1862,25 @@ msgstr "%s a fost dezactivat pentru acest server MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Acest server MySQL nu susține motorul de stocare %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Bază de date nevalidă"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Denumire de tabel nevalidă"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Eroare la redenumirea tabelului %1$s în %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabelului %s i s-a dat un numele de %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1870,10 +1912,9 @@ msgstr "Tema %s nu a fost găsită!"
msgid "Theme path not found for theme %s!"
msgstr "Calea temei nu a fost găsită pentru tema %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Șablon/stil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1881,7 +1922,6 @@ msgstr "Conexiune esuata: setari invalide."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Bine ați venit la %s"
@@ -2036,7 +2076,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabele"
@@ -2127,7 +2167,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2175,7 +2214,7 @@ msgid "Documentation"
msgstr "Documentație"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Comanda SQL"
@@ -2183,122 +2222,122 @@ msgstr "Comanda SQL"
msgid "MySQL said: "
msgstr "MySQL zice: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
#, fuzzy
msgid "Failed to connect to SQL validator!"
msgstr "Comprimă conexiunea la serverul MySQL"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Explică SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Sari peste explicarea SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "fără cod PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Creează cod PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Reîncarcă"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Sari peste validarea SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validează SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Motoare"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Creare profil"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "octeți"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiO"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiO"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiO"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiO"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiO"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiO"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y la %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s zile, %s ore, %s minute și %s secunde"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Începe"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Sfîrșit"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Sari la baza de date "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2310,42 +2349,42 @@ msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s"
msgid "Structure"
msgstr "Structură"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Inserare"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operații"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "director de încărcare al serverului Web"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Directorul stabilit pentru încărcare nu poate fi găsit"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2707,7 +2746,7 @@ msgstr "Redenumire bază de date în"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4705,7 +4744,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Drepturi de acces"
@@ -4717,7 +4756,7 @@ msgstr "Rutine"
msgid "Return type"
msgstr "Tipul întors"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4932,9 +4971,9 @@ msgstr "Setul de caractere al fișierului:"
msgid "Compression:"
msgstr "Compresie"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Nici unul(a)"
@@ -5083,39 +5122,59 @@ msgstr ""
msgid "Language"
msgstr "Limbă"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Adaugă/șterge coloane"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Click pentru a selecta"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d nu este un număr valid de rînduri."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "linii începînd cu"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "orizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "orizontal (colontitlu rotativ)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "în mod %s și repetare colontitlu după %s celule"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sortare după cheie"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5128,101 +5187,101 @@ msgstr "Sortare după cheie"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opțiuni"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Texte parțiale"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Texte întregi"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Cheie relațională"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relational display field"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformare navigator"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Linia a fost ștearsă"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Oprește"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "în interogarea"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Afișează înregistrări"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "comanda a durat %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Schimbare"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operațiuni asupra rezultatelor interogării"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Vizualizare listare (împreună cu text)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Arată schema PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Creare relație"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Legatură nevalidă"
@@ -5270,7 +5329,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Stare InnoDB"
@@ -5790,7 +5849,7 @@ msgstr "Tipuri MIME disponibile"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Gazda"
@@ -6000,7 +6059,7 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Generat de"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6162,7 +6221,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Nici o schimbare"
@@ -6493,14 +6552,14 @@ msgid "Slave status"
msgstr "Afișează stare sclav"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variabil"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Valoare"
@@ -6742,20 +6801,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Jurnal binar"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variabile"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Seturi de caractere"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motoare"
@@ -6806,11 +6865,11 @@ msgstr "Calendar"
msgid "Columns"
msgstr "Denumirile coloanelor"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Pune semn de carte la această comandă SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
@@ -7047,7 +7106,7 @@ msgstr "Definiție PARTIȚIE"
msgid "+ Add a new value"
msgstr "Adaugă un server nou"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Timp"
@@ -7290,7 +7349,7 @@ msgid "Protocol version"
msgstr "Versiune protocol"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Utilizator"
@@ -7573,7 +7632,7 @@ msgstr "Creează"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operand"
@@ -7771,17 +7830,17 @@ msgstr "Tabelul „%s” nu există!"
msgid "Select binary log to view"
msgstr "Selectați jurnalul binar pentru vizualizare"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Fișiere"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncare comenzi afișate"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Afișare comandă întreagă"
@@ -8321,7 +8380,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Afișează stare sclav"
@@ -8462,12 +8521,36 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Reîncarcă"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "în folosință"
+msgstr[1] "în folosință"
+msgstr[2] "în folosință"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "pe secundă"
+msgstr[1] "pe secundă"
+msgstr[2] "pe secundă"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Firul de execuție %s a fost oprit cu succes."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8475,194 +8558,160 @@ msgstr ""
"phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost "
"deja oprit."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Gestionar"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Cache interogări"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Fire"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Date temporare"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Inserări întîrziate"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Joncțiuni"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortare"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Coordonator tranzacție"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Afișează tabele deschise"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Afișează gazde sclavi"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Afișează stare sclav"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Reinițializare cache interogare"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informații rulare"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Alegerea serverului"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Statisticile rîndului"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Reîncarcă"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "pe secundă"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "pe secundă"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "în folosință"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nu schimbați parola"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Afișează tabele deschise"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Legături"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "pe oră"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "pe minut"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "pe secundă"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Tip interogare"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Acest server MySQL rulează de %s. S-a lansat la %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Replicare"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafic"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8670,44 +8719,40 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Recepționat"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Trimis"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Conexiuni"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "conexiuni concurente (maxim)"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Încercări nereușite"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Întrerupt"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procese"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Comprimă conexiunea la serverul MySQL"
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8717,16 +8762,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8738,109 +8783,109 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Cîte fișiere temporare a creat mysqld."
-#: server_status.php:846
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: server_status.php:847
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: server_status.php:848
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: server_status.php:849
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: server_status.php:850
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: server_status.php:851
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: server_status.php:852
-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:853
-msgid ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-msgstr ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-
-#: server_status.php:854
-msgid ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-msgstr ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-
#: server_status.php:855
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
#: server_status.php:856
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."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
msgstr ""
-"The number of requests to read the next row in key order. This is "
-"incremented if you are querying an index column with a range constraint or "
-"if you are doing an index scan."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
#: server_status.php:857
msgid ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
msgstr ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"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:858
-msgid ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
#: server_status.php:859
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:860
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:861
+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:862
+msgid ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+msgstr ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+
+#: server_status.php:863
+msgid ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgstr ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+
+#: server_status.php:864
+msgid ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+msgstr ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+
+#: server_status.php:865
+msgid ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+msgstr ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+
+#: server_status.php:866
+msgid ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+msgstr ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+
+#: server_status.php:867
+msgid ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:868
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 "
@@ -8852,36 +8897,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Numărul de pagini actualmente murdare."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Numărul de pagini libere."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8891,7 +8936,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8903,11 +8948,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8915,7 +8960,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8923,11 +8968,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8935,7 +8980,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:874
+#: server_status.php:883
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 "
@@ -8949,55 +8994,55 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -9005,35 +9050,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Numărul de pagini create."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9041,51 +9086,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Numărul de pagini citite."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Numărul de pagini scrise."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Numărul de rînduri citite din tabelele InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Numărul de rînduri actualizate în tabelele InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9093,7 +9138,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:907
+#: server_status.php:916
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."
@@ -9101,7 +9146,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:908
+#: server_status.php:917
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 "
@@ -9111,11 +9156,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9125,15 +9170,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9143,17 +9188,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9161,38 +9206,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Numărul de tabele ce sînt deschise."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Numărul de nimeriri în cache."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Numărul de interogări adăugate la cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9204,7 +9249,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9212,19 +9257,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Numărul de interogări înregistrate în cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Numărul total de blocuri în cache-ul interogării."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9232,11 +9277,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9244,7 +9289,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9252,15 +9297,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9268,78 +9313,78 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:936
+#: server_status.php:945
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:937
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: server_status.php:938
-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:939
-msgid ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-msgstr ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-
-#: server_status.php:940
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: server_status.php:941
-msgid "The number of sorted rows."
-msgstr "Numărul de rînduri sortate."
-
-#: server_status.php:942
-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:943
-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:944
-msgid ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-
-#: server_status.php:945
-msgid ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-msgstr ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-
#: server_status.php:946
-msgid "The number of currently open connections."
-msgstr "Numărul de conexiuni deschise momentan."
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
#: server_status.php:947
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:948
+msgid ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+msgstr ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+
+#: server_status.php:949
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:950
+msgid "The number of sorted rows."
+msgstr "Numărul de rînduri sortate."
+
+#: server_status.php:951
+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:952
+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:953
+msgid ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:954
+msgid ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+msgstr ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+
+#: server_status.php:955
+msgid "The number of currently open connections."
+msgstr "Numărul de conexiuni deschise momentan."
+
+#: server_status.php:956
+msgid ""
"The number of threads created to handle connections. If Threads_created is "
"big, you may want to increase the thread_cache_size value. (Normally this "
"doesn't give a notable performance improvement if you have a good thread "
@@ -9350,7 +9395,7 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
@@ -9476,7 +9521,7 @@ msgstr "Variabile și configurări de server"
msgid "Session value"
msgstr "Valoare sesiune"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Valoare globală"
@@ -9757,41 +9802,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Caută printre valori necunoscute"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "ID rînd inserat: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Afișare ca și cod PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Afișare interogare SQL"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validează SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleme cu indexul tabelului `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etichetă"
@@ -10183,25 +10228,25 @@ msgstr "Constrângeri ale cheii străine"
msgid "No rows selected"
msgstr "Nu e nici un rînd selectat"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Selectează cîmpurile (cel puțin unul):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Numărul de înregistrări pe pagină"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Ordine de afișare:"
@@ -10497,8 +10542,12 @@ msgstr "Denumire VIZIUNE"
msgid "Rename view to"
msgstr "Redenumire tabel la"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Șablon/stil"
+
+#~ msgid "seconds"
+#~ msgstr "pe secundă"
+
#~ msgid "Query results"
#~ msgstr "Operațiuni asupra rezultatelor interogării"
@@ -10512,8 +10561,6 @@ msgstr "Redenumire tabel la"
#~ msgid "Show processes"
#~ msgstr "Afișează procesele"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Resetare"
@@ -10532,31 +10579,20 @@ msgstr "Redenumire tabel la"
#~ "Statistică interogări : De la început, s-au trimis %s interogări la "
#~ "server."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Drepturile au fost reîncarcate cu succes."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Poate fi aproximativ. Vezi FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Tip interogare"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Adaugă un utilizator nou"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Creare relație"
diff --git a/po/ru.po b/po/ru.po
index 67df2ba6d9..186d1b533a 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-09 00:25+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-16 22:26+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \n"
"Language: ru\n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Показать все"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"родительское окно или ваш браузер блокирует межоконные обновления из-за "
"настроек безопасности."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Поиск"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Поиск"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Имя индекса"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Описание"
@@ -138,7 +138,7 @@ msgstr "Комментарий к таблице"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Поле"
@@ -151,7 +151,7 @@ msgstr "Поле"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -167,7 +167,7 @@ msgstr "Тип"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Связи"
msgid "Comments"
msgstr "Комментарии"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "Комментарии"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Нет"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "Нет"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "Отобразить дамп (схему) базы данных"
msgid "No tables found in database."
msgstr "Таблиц в базе данных не обнаружено."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Выделить все"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Снять выделение"
@@ -272,7 +272,7 @@ msgstr "База данных %s была скопирована в %s"
msgid "Rename database to"
msgstr "Переименовать базу данных в"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Команда"
@@ -333,7 +333,7 @@ msgstr "Переключиться на скопированную базу да
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -358,7 +358,7 @@ msgstr "Редакция или экспорт схемы связей"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Таблица"
@@ -374,7 +374,7 @@ msgstr "Строки"
msgid "Size"
msgstr "Размер"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "используется"
@@ -400,7 +400,7 @@ msgstr "Последнее обновление"
msgid "Last check"
msgstr "Последняя проверка"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -422,25 +422,25 @@ msgid "visual builder"
msgstr "визуальный составитель запросов"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Отсортировать"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "По возрастанию"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "По убыванию"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Показать"
@@ -463,7 +463,7 @@ msgstr "Удалить"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Или"
@@ -492,39 +492,39 @@ msgstr "Использовать таблицы"
msgid "SQL query on database %s :"
msgstr "SQL-запрос к базе данных %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Выполнить запрос"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "В доступе отказано"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "любое из слов"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "все слова"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "точное соответствие"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "регулярное выражение"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Результаты поиска по \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
@@ -532,19 +532,19 @@ msgstr[0] "%s соответствие в таблице %s "
msgstr[1] "%s соответствия в таблице %s "
msgstr[2] "%s соответствий в таблице %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Обзор"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Удалить соответствия для таблицы %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -555,7 +555,7 @@ msgstr "Удалить соответствия для таблицы %s?"
msgid "Delete"
msgstr "Удалить"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -563,58 +563,58 @@ msgstr[0] "Итого: %s соответствие"
msgstr[1] "Итого: %s соответствия"
msgstr[2] "Итого: %s соответствий"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Поиск в базе данных"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Слово(а) или значение(я) для поиска (групповой символ: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Искать:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Слова разделяются пробелом (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "В таблице/таблицах:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "В поле:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Таблиц в базе данных не найдено"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблица %s была очищена"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Представление %s было удалено"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблица %s была удалена"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Слежение включено."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Слежение выключено."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -623,106 +623,106 @@ msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Представление"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Репликация"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Всего"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "С отмеченными:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Отметить все"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Снять выделение"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Отметить требующие оптимизации"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспорт"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Версия для печати"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Очистить"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Удалить"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Проверить таблицу"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Оптимизировать таблицу"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Восстановить таблицу"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Анализ таблицы"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Добавить префикс таблицы"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Заменить префикс таблицы"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Копировать таблицу с префиксом"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Словарь данных"
@@ -737,9 +737,9 @@ msgstr "Отслеживаемые таблицы"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "База данных"
@@ -755,8 +755,8 @@ msgstr "Создан"
msgid "Updated"
msgstr "Обновлён"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Состояние"
@@ -902,7 +902,7 @@ msgstr "Закладка удалена."
msgid "Showing bookmark"
msgstr "Отображение закладки"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка "%s" создана"
@@ -931,7 +931,7 @@ msgstr ""
"пока не будет увеличено ограничение времени выполнения php-сценариев."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -957,15 +957,15 @@ msgstr "Выделение"
msgid "Click to unselect"
msgstr "Снятие выделения"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Вы действительно хотите выполнить запрос"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "База данных будет полностью УДАЛЕНА!"
@@ -1016,10 +1016,8 @@ msgstr "Введите число!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Количество файлов журнала"
+msgstr "Общее количество"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1055,157 +1053,195 @@ msgstr "Удаление выбранных пользователей"
msgid "Close"
msgstr "Закрыть"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Выбор сервера"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Вывести график запроса"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Всего"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Загрузка"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Обработка запроса"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Ошибка при обработке запроса"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Удаление столбца"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Добавление первичного ключа"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Переименование базы данных"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Перезагрузка базы данных"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Копирование базы данных"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Смена кодировки"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "У таблицы должен быть, как минимум, один столбец"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Создать таблицу"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Вставить таблицу"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Поиск"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Скрыть результаты поиска"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Отобразить результаты поиска"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Просмотр"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Удаление"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-"Замечание: если файл содержит множество таблиц, они будут объединены в одну"
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Скрыть поле запроса"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Отобразить поле запроса"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Быстрая правка"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Изменить"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Графический вывод трафика"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Графический вывод соединений и процессов"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Графический вывод запросов"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Статические данные"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Всего"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Другое"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Трафик сервера"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Процессы"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Соединения"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL запросы"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Статистика запросов"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Загрузка"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Обработка запроса"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Ошибка при обработке запроса"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Удаление столбца"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Добавление первичного ключа"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Переименование базы данных"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Перезагрузка базы данных"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Копирование базы данных"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Смена кодировки"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "У таблицы должен быть, как минимум, один столбец"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Создать таблицу"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Вставить таблицу"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Поиск"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Скрыть результаты поиска"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Отобразить результаты поиска"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Просмотр"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Удаление"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+"Замечание: если файл содержит множество таблиц, они будут объединены в одну"
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Скрыть поле запроса"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Отобразить поле запроса"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Быстрая правка"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1213,43 +1249,43 @@ msgstr "Изменить"
msgid "Save"
msgstr "Сохранить"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Скрыть"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Скрыть параметры поиска"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Отобразить параметры поиска"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнорировать"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Выберите ссылочный ключ"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Выберите внешний ключ"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
"Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) "
"индексом"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Выбор отображаемого столбца"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1257,27 +1293,27 @@ msgstr ""
"Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. "
"Продолжить?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Добавить параметр для столбца"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Создать пароль"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генерировать"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Изменить пароль"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Ещё"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1287,258 +1323,258 @@ msgstr ""
"Новейшая версия %s, выпущена %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", последняя стабильная версия:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "актуально"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Предыдущий"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Следующий"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Сегодня"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Январь"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Февраль"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Март"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Апрель"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Май"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Июнь"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Июль"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Август"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Сентябрь"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Октябрь"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Ноябрь"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Декабрь"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Воскресенье"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Понедельник"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Вторник"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Среда"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Четверг"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Пятница"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Суббота"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Вс"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Нед."
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Час"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Минута"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Секунда"
@@ -1633,7 +1669,7 @@ msgstr "Индексы %1$s и %2$s равнозначны и один из ни
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Базы данных"
@@ -1701,25 +1737,25 @@ msgstr "Тип таблиц %s был отключен на данном MySQL
msgid "This MySQL server does not support the %s storage engine."
msgstr "Данный сервер MySQL не поддерживает тип таблиц %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Некорректная база данных"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Неправильное имя таблицы"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Ошибка при переименовании таблицы %1$s в %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Таблица %s была переименована в %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Не получилось сохранить настройки интерфейса таблицы"
@@ -1751,10 +1787,9 @@ msgstr "Тема %s не найдена!"
msgid "Theme path not found for theme %s!"
msgstr "Путь к файлам темы %s не найден!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Тема / Стиль"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1762,7 +1797,6 @@ msgstr "Соединение невозможно! Неверные настро
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Добро пожаловать в %s"
@@ -1912,7 +1946,7 @@ msgstr "общий"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Таблицы"
@@ -1998,7 +2032,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сервер"
@@ -2047,7 +2080,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-запрос"
@@ -2055,120 +2088,120 @@ msgstr "SQL-запрос"
msgid "MySQL said: "
msgstr "Ответ MySQL: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Невозможно соединиться с SQL валидатором!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Анализ SQL запроса"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Убрать анализ SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Убрать PHP-код"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Обновить"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Убрать проверку синтаксиса SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Проверка синтаксиса"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Быстрое редактирование запроса"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Быстрая правка"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Профилирование"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Байт"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "КБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "ТБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "ПБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "ЭБ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y г., %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дней, %s часов, %s минут и %s секунд"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Начало"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Назад"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Конец"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти к базе данных "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Работа параметра "%s" подвержена ошибке, описание смотрите на %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2180,41 +2213,41 @@ msgstr ""
msgid "Structure"
msgstr "Структура"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Вставить"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Операции"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Обзор вашего компьютера:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Выберите из каталога загрузки сервера %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Установленный каталог загрузки не доступен"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Файлы для загрузки отсутствуют"
@@ -2574,7 +2607,7 @@ msgstr "Вкладка по умолчанию для таблицы"
msgid "Show binary contents as HEX by default"
msgstr "Показывать двоичные данные по умолчанию в шестнадцатеричном виде (HEX)"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Показывать бинарные данные в виде HEX значений"
@@ -4647,7 +4680,7 @@ msgstr "Дизайнер"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Привилегии"
@@ -4659,7 +4692,7 @@ msgstr "Процедуры"
msgid "Return type"
msgstr "Возвращаемый тип"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4848,9 +4881,9 @@ msgstr "Кодировка файла:"
msgid "Compression:"
msgstr "Компрессия:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Нет"
@@ -4981,37 +5014,53 @@ msgstr "Параметры формата:"
msgid "Language"
msgstr "Язык"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Восстановить порядок столбцов"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Изменить порядок перетаскиванием"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Кликнуть для сортировки"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Кликнуть для снятия/установки отметки"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "Число %d не является правильным номером строки."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "строки начиная от"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "горизонтальном"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "горизонтальном (повернутые заголовки)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "вертикальном"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "в %s режиме, заголовки после каждых %s ячеек"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Сортировать по индексу"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5024,92 +5073,92 @@ msgstr "Сортировать по индексу"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Параметры"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Сокращенные тексты"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Полные тексты"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Ссылочный ключ"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Отображение связанного поля"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Показать бинарные данные"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Показать BLOB содержимое"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Преобразование"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Копировать"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Запись была удалена"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Завершить"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "по запросу"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Отображает строки"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "всего"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "запрос занял %01.4f сек."
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Изменить"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Использование результатов запроса"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Версия для печати (полностью)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Отобразить график"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Создать представление"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Связь не найдена"
@@ -5157,7 +5206,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буферный пул"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Состояние InnoDB"
@@ -5665,7 +5714,7 @@ msgstr "Отобразить MIME типы"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Хост"
@@ -5891,7 +5940,7 @@ msgstr "Результат SQL-запроса"
msgid "Generated by"
msgstr "Создан"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вернула пустой результат (т.е. ноль строк)."
@@ -6053,7 +6102,7 @@ msgstr "Добавить префикс таблицы"
msgid "Add prefix"
msgstr "Добавить префикс"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Нет изменений"
@@ -6386,14 +6435,14 @@ msgid "Slave status"
msgstr "Статус Slave"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Переменная"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Значение"
@@ -6621,20 +6670,20 @@ msgid "Synchronize"
msgstr "Синхронизировать"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Бинарный журнал"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Переменные"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Кодировки"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Типы таблиц"
@@ -6679,11 +6728,11 @@ msgstr "Очистить"
msgid "Columns"
msgstr "Столбцы"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Создание закладки"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Доступна для всех пользователей"
@@ -6908,7 +6957,7 @@ msgstr "Определение разделов (PARTITION)"
msgid "+ Add a new value"
msgstr "+ Добавить новое значение"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Время"
@@ -7107,7 +7156,7 @@ msgid "Protocol version"
msgstr "Версия протокола"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Пользователь"
@@ -7379,7 +7428,7 @@ msgstr "Объединение"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Оператор"
@@ -7557,17 +7606,17 @@ msgstr "Файл не существует"
msgid "Select binary log to view"
msgstr "Выберите бинарный журнал для просмотра"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Файлов"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Сокращенное отображение запросов"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Развернутое отображение запросов"
@@ -8100,7 +8149,7 @@ msgstr "Головной сервер успешно изменён на %s"
msgid "This server is configured as master in a replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Показать состояние головного сервера"
@@ -8251,12 +8300,34 @@ msgstr ""
"Данный сервер не настроен в качестве подчинённого для процесса репликации. "
"Хотите произвести настройку ?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Частота обновления"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "minutes"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "минуты"
+msgstr[1] "минуты"
+msgstr[2] "минуты"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "секунда"
+msgstr[1] "секунда"
+msgstr[2] "секунда"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процесс %s был успешно завершен."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8264,166 +8335,123 @@ msgstr ""
"phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был "
"закрыт."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr "Обработчик"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Кеш запросов"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Потоки"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Временные данные"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Отложенные вставки"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Кеш индекса"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Объединения"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Сортировка"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Координатор транзакций"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Закрыть все таблицы"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Список открытых таблиц"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Информация о подчиненных серверах"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Информация о состоянии сервера репликации"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Дефрагментировать кеш запросов"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Текущее состояние MySQL"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Выбор сервера"
+msgstr "Трафик сервера"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Статистика запросов"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Смотрите таблицу состояния подчинённого сервера"
+msgstr "Все переменные состояния"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Обновить"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Секунда"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Секунда"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Минута"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "Не менять пароль"
+msgstr "Содержит слово:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Список открытых таблиц"
+msgstr "Выводить только предупреждающие значения"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Фильтр по категории..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "Дополнительные ссылки"
+msgstr "Связанные ссылки:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "в час"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "в минуту"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "в секунду"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Тип запроса"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "Кол-во"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Сетевой трафик с момента запуска: %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL сервер работает %s. Время запуска: %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8431,32 +8459,32 @@ msgstr ""
"Данный MySQL сервер настроен головным и подчиненным в процессе "
"репликации ."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr "Данный сервер настроен головным в процессе репликации ."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Данный сервер настроен подчиненным в процессе репликации ."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Для получения подробной информации о состоянии репликации сервера, "
"пожалуйста, перейдите в раздел репликации ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Состояние репликации"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Трафик"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8464,45 +8492,39 @@ msgstr ""
"На загруженном сервере, побайтовые счетчики могут переполняться, таким "
"образом, статистика, передаваемая MySQL-сервером, может быть некорректной."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Принято"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Отправлено"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Соединения"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Максимально одновременных"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Неудачных попыток"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Прерваны"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Процессы"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Could not connect to MySQL server"
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Невозможно соединиться с сервером MySQL"
+msgstr "Количество неудавшихся попыток соединения к серверу MySQL."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8512,16 +8534,16 @@ msgstr ""
"значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения "
"были сохранены во временном файле."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Количество транзакций, использовавших кеш бинарного журнала."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL."
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8533,11 +8555,11 @@ msgstr ""
"велико, следует увеличить значение переменной tmp_table_size, чтобы "
"временные таблицы располагались в памяти, а не на жестком диске."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8545,7 +8567,7 @@ msgstr ""
"Количество временных таблиц в памяти, созданных сервером автоматически в "
"процессе выполнения SQL-выражений."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8553,31 +8575,31 @@ msgstr ""
"Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, "
"например, из-за дублирования ключей."
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Количество строк записанных в режиме отложенной вставки данных (INSERT "
"DELAYED)."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Количество выполненных команд FLUSH."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Количество внутренних команд COMMIT."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Количество запросов на удаление строк из таблицы."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8587,7 +8609,7 @@ msgstr ""
"определенным именем. Этот процесс называется обнаружением. Handler_discover "
"- число обнаружений таблиц."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8598,7 +8620,7 @@ msgstr ""
"индекса. Например, SELECT col1 FROM foo, при условии, что col1 "
"проиндексирован."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8607,7 +8629,7 @@ msgstr ""
"значение переменной говорит о том, что запросы и таблицы проиндексированы "
"надлежащим образом."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8617,7 +8639,7 @@ msgstr ""
"индексов. Значение увеличивается при запросе индексного столбца с "
"ограничением по размеру или при сканировании индекса."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8625,7 +8647,7 @@ msgstr ""
"Количество запросов на чтение предыдущей строки при ниспадающей сортировке "
"индекса. Обычно используется при оптимизации: ORDER BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8638,7 +8660,7 @@ msgstr ""
"требующих полного сканирования таблиц, наличием объединений не использующих "
"индексы надлежащим образом."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8650,39 +8672,39 @@ msgstr ""
"что таблицы не проиндексированы надлежащим образом или запросы не используют "
"преимущества индексов."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Количество внутренних команд ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Количество запросов на обновление строк в таблице."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Количество запросов на вставку строк в таблицу."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Количество страниц содержащих данные ("грязные" или ""
"чистые")."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Текущее количество "грязных" страниц."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Количество страниц буферного пула, над которыми был осуществлен процесс "
"очистки (FLUSH)."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Количество свободных страниц."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8692,7 +8714,7 @@ msgstr ""
"страницами осуществляется процесс чтения или записи, либо они не могут быть "
"очищены или удалены по какой-либо другой причине."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8704,11 +8726,11 @@ msgstr ""
"Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Общий размер буферного пула (в страницах)."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8716,7 +8738,7 @@ msgstr ""
"Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это "
"происходит, когда запрос сканирует большую часть таблицы в случайном порядке."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8725,11 +8747,11 @@ msgstr ""
"происходит, когда InnoDB выполняет полное последовательное сканирование "
"таблицы."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Количество последовательных запросов на чтение, выполненных InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8737,7 +8759,7 @@ msgstr ""
"Количество последовательных запросов на чтение, которые InnoDB не смог "
"выполнить из буферного пула и использовал постраничное чтение."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8751,55 +8773,55 @@ msgstr ""
"ожиданий. Если размер буферного пула был установлен должным образом, "
"значение будет небольшим."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Количество записей, выполненных в буферный пул InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Количество операций fsync(), выполненных на данный момент."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Текущее количество незавершенных операций fsync()."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Текущее количество незавершенных операций чтения."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Текущее количество незавершенных операций записи."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Сумма данных (в байтах), прочитанных на данный момент."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Общее количество операций чтения данных."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Общее количество операций записи данных."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Сумма данных (в байтах), записанных на данный момент."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Количество записей в буфер doublewrite, и количество созданных для этого "
"страниц."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Количество записей в буфер doublewrite, и количество созданных для этого "
"страниц."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8807,36 +8829,36 @@ msgstr ""
"Количество ожиданий очистки журнального буфера, вследствие малого его "
"размера."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Количество запросов на запись в журнал."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Количество физических записей в файл журнала."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Количество записей с помощью fsync(), сделанных в файл журнала."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
"Количество незавершенных попыток синхронизации с помощью операции fsync()."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Количество незавершенных запросов на запись в журнал."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Объем данных в байтах, записанных в файл журнала."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Количество созданных страниц."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8845,51 +8867,51 @@ msgstr ""
"приводятся в страницах, но зная объем страницы, можно перевести эти значения "
"в байты."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Количество прочитанных страниц."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Количество записанных страниц."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Текущее количество ожиданий блокировок строк."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Среднее время ожидания блокировки строк (в миллисекундах)."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Общее время, ожидания блокировок строк (в миллисекундах)."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Общее количество ожиданий блокировки строк."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Количество строк, удаленных из таблиц InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Количество строк, добавленных в таблицы InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Количество строк, прочитанных из таблиц InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Количество строк, обновленных в таблицах InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8897,7 +8919,7 @@ msgstr ""
"Количество блоков в кеше индекса, которые были изменены, но еще не записаны "
"на диск. Данный параметр также известен как Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8905,7 +8927,7 @@ msgstr ""
"Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет "
"определить как полно используется кеш индекса."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -8914,11 +8936,11 @@ msgstr ""
"Количество используемых блоков в кеше индекса. Данное значение - "
"максимальное количество блоков, использованных одновременно."
-#: server_status.php:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "Количество запросов на чтение блока из кеша индексов."
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -8929,15 +8951,15 @@ msgstr ""
"key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан "
"как: Key_reads/Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "Количество запросов на запись блока в кеш индекса."
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Количество физических операций записи блока индексов на диск."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -8948,17 +8970,19 @@ msgstr ""
"одного запроса. Изначальное нулевое значение, означает, что процесса "
"компиляции запроса еще не было."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"Максимальное количество соединений использованных одновременно начиная с "
+"запуска сервера."
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED."
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8966,42 +8990,45 @@ msgstr ""
"Общее количество открывавшихся таблиц. При большом значении переменной "
"рекомендуется увеличить размер кеша таблиц (table_cache)."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Количество открытых файлов."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Количество открытых потоков (применяется к файлам журналов). Потоком "
"называется файл, открытый с помощью функции fopen()."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Количество открытых таблиц."
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Количество свободных блоков памяти в кеше запроса. Высокое значение может "
+"указывать на фрагментацию, проблема которой решается выполнением запроса "
+"FLUSH QUERY CACHE."
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Объем свободной памяти для кеша запросов."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
"Количество "попаданий" в кеш запросов, т.е. сколько запросов было "
"удовлетворено запросами, находящимися в кеше."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Количество запросов, добавленных в кеш запросов."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9014,7 +9041,7 @@ msgstr ""
"не использующиеся страницы заменяются новыми) при принятии решения об "
"удаления запроса из кеша."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9022,19 +9049,19 @@ msgstr ""
"Количество запросов, которые оказались некешируемыми или для которых "
"кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Количество запросов, зарегистрированных в кеше."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Состояние отказоустойчивой репликации (пока не реализовано)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9042,13 +9069,13 @@ msgstr ""
"Количество запросов-объединений, выполненных без использования индексов. "
"Если значение переменной не равно 0, рекомендуется проверить индексы таблиц."
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Количество запросов-объединений, выполненных с использованием поиска по "
"диапазону в таблице, на которую делается ссылка."
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -9057,7 +9084,7 @@ msgstr ""
"диапазону для выборки строк из вторичной таблицы. Если значение переменной "
"не равно 0, рекомендуется проверить индексы таблиц."
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9066,18 +9093,18 @@ msgstr ""
"диапазону в первой таблице. Обычно значение этой переменной не критично, "
"даже если оно велико."
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
"Количество запросов-объединений, выполненных с использованием полного поиска "
"по первой таблице."
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Количество временных таблиц, открытых в настоящий момент подчиненным потоком."
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9085,13 +9112,13 @@ msgstr ""
"Общее количество повторов транзакций подчиненным потоком репликации с "
"момента запуска."
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Присваивается значение ON, если данный сервер функционирует как подчиненный, "
"подключенный к главному."
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9099,12 +9126,12 @@ msgstr ""
"Количество потоков, на создание которых потребовалось более чем "
"slow_launch_time секунд."
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Количество запросов, выполнявшихся более long_query_time секунд."
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -9113,28 +9140,28 @@ msgstr ""
"Количество проходов, сделанных алгоритмом сортировки. При большом значении "
"следует увеличить значение переменной sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
"Количество операций сортировки, выполненных с использованием диапазона."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Количество отсортированных строк."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
"Количество операций сортировки, выполненных с использованием полного "
"сканирования таблицы."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
"Количество запросов на блокировку таблицы, которые были удовлетворены "
"немедленно."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9146,7 +9173,7 @@ msgstr ""
"производительностью, необходимо сначала оптимизировать свои запросы, а затем "
"разбить свою таблицу (или таблицы) или использовать репликацию."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9156,11 +9183,11 @@ msgstr ""
"вычислить по формуле Threads_created/Connections. Если это значение окрашено "
"в красный цвет - вам следует увеличить thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Количество открытых текущих соединений."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9172,7 +9199,7 @@ msgstr ""
"thread_cache_size (это не даст существенного выигрыша в производительности, "
"при хорошей реализации потоков)."
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Количество процессов, находящихся в активном состоянии."
@@ -9295,7 +9322,7 @@ msgstr "Серверные переменные и настройки"
msgid "Session value"
msgstr "Значение сессии"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Глобальное значение"
@@ -9630,39 +9657,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Ключ должен содержать символы алфавита, цифры [em]и[/em] знаки."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Обзор внешних значений"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Для обзора данных использован запрос из закладки \"%s\"."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Идентификатор вставленной строки: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Отображает как PHP-код"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Отображает SQL-запрос"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "SQL синтаксис проверен"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблемы с индексами таблицы `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Метка"
@@ -9744,10 +9771,8 @@ msgid "Line"
msgstr "Линия"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "Быстрая правка"
+msgstr "Сплайн"
#: tbl_chart.php:89
msgid "Pie"
@@ -9758,50 +9783,36 @@ msgid "Stacked"
msgstr "Уложенный"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Заголовок отчета:"
+msgstr "Заголовок графика"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Ось-X:"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "SQL запросы"
+msgstr "Серии:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Столбцов в текстовом поле"
+msgstr "Оставшиеся столбцы"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "Подпись для оси X"
+msgstr "Подпись для оси X:"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Значение"
+msgstr "Значения X"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "Подпись для оси Y"
+msgstr "Подпись для оси Y:"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Значение"
+msgstr "Значения Y"
#: tbl_create.php:56
#, php-format
@@ -10040,23 +10051,23 @@ msgstr "Ограничение внешнего ключа"
msgid "No rows selected"
msgstr "Для совершения действия необходимо выбрать одну или несколько строк"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Выберите поля (не менее одного):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Добавить условия поиска (тело для условия \"WHERE\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Количество строк на странице"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Сортировка:"
@@ -10338,6 +10349,12 @@ msgstr "VIEW название"
msgid "Rename view to"
msgstr "Переименовать представление в"
+#~ msgid "Theme / Style"
+#~ msgstr "Тема / Стиль"
+
+#~ msgid "seconds"
+#~ msgstr "секунды"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Сравнение времени выполнения запроса (в микросекундах)"
diff --git a/po/si.po b/po/si.po
index 2f22e42f66..a4e7dbb8c7 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "සියල්ල පෙන්වන්න"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"ඉලක්කගත බ්රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්රව්සරයේ "
"ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "සෙවීම"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "සෙවීම"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "යතුරු නම"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "විස්තරය"
@@ -134,7 +134,7 @@ msgstr "වගු විස්තර"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "තීර"
@@ -147,7 +147,7 @@ msgstr "තීර"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "වර්ගය"
@@ -163,7 +163,7 @@ msgstr "වර්ගය"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -192,7 +192,7 @@ msgstr "Links to"
msgid "Comments"
msgstr "විස්තරය"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -203,12 +203,12 @@ msgstr "විස්තරය"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "නැත"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -223,7 +223,7 @@ msgstr "නැත"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -242,11 +242,11 @@ msgstr "View dump (schema) of database"
msgid "No tables found in database."
msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "සියල්ල තෝරන්න"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න"
@@ -268,7 +268,7 @@ msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කර
msgid "Rename database to"
msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "විධානය"
@@ -329,7 +329,7 @@ msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙ
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -354,7 +354,7 @@ msgstr "ක්රමානුරූපය සංස්කරණය හෝ අ
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "වගුව"
@@ -370,7 +370,7 @@ msgstr "පේළි"
msgid "Size"
msgstr "ප්රමාණය"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "භාවිතා වෙමින් පවතී"
@@ -396,7 +396,7 @@ msgstr "අවසන් යාවත් කාලීන කිරීම"
msgid "Last check"
msgstr "අවසන් පරීක්ෂාව"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -416,25 +416,25 @@ msgid "visual builder"
msgstr "දෘශ්ය ගොඩනංවනය"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "සුබෙදන්න"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "ආරෝහන"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "අවරෝහන"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "පෙන්වන්න"
@@ -457,7 +457,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "හෝ"
@@ -486,58 +486,58 @@ msgstr "වගු භාවිතා කරන්න"
msgid "SQL query on database %s :"
msgstr "%s දත්තගබඩාව මත SQL විමසුම:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "පිවිසුම වලක්වා ඇත"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "අවම වශයෙන් එක් වචනයක්වත්"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "සියලු වචන"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "හරියටම වාක්යාංශය"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "as regular expression"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"%s \" %s සඳහා සෙවීම් ප්රතිළුල:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s වගුව තුල ගැලපීම් %s කි"
msgstr[1] "%s වගුව තුල ගැලපීම් %s කි"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "පිරික්සන්න"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -548,65 +548,65 @@ msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන
msgid "Delete"
msgstr "ඉවත් කරන්න"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "එකතුව: %s ගැලපුමයි"
msgstr[1] "එකතුව: ගැලපුම් %s යි"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "දත්තගබඩාවේ සොයන්න"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "සෙවීම සඳහා වචන(ය) හෝ අගය(න්) (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "සොයන්න:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Words are separated by a space character (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "වගු(ව) තුල:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "තීරය තුල:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "%s වගුව හිස් කරන ලදි"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "%s දසුන හලන ලදි"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "%s වගුව හලන ලදි"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "අවධානය සක්රීයයි."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "අවධානය අක්රීයයි."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -614,106 +614,106 @@ msgid ""
msgstr ""
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "දසුන"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "අනුරූ කරණය"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "එකතුව"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "තෝරාගත්:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "සියල්ල කතිර කොටුගත කරන්න"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Check tables having overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "අපනයනය"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "මුද්රණ දර්ශනය"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "හිස්"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "හලන්න"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "වගුව පරීක්ෂා කරන්න"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "ප්රශස්තගත වගුව"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "වගුව ප්රතිසංස්කරණය කරන්න"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "වගුව විශ්ලේෂණය කරන්න"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "වගුවට නාම මූලයක් එක් කරන්න"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "වගු නාම මූලය ප්රතිස්ථාපනය කරන්න"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "දත්ත කෝෂය"
@@ -728,9 +728,9 @@ msgstr "අවධානය සක්රීය වගු"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "දත්තගබඩාව"
@@ -746,8 +746,8 @@ msgstr "සාදන ලදි"
msgid "Updated"
msgstr "යාවත්කාලීන කරන ලදි"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "තත්වය"
@@ -890,7 +890,7 @@ msgstr "පොත් සලකුණ ඉවත් කරන ලදි."
msgid "Showing bookmark"
msgstr "පොත් සලකුණ පෙන්වන්න"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "%s පොත් සලකුණ සාදන ලදි"
@@ -917,7 +917,7 @@ msgstr ""
"won't be able to finish this import unless you increase php time limits."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -943,15 +943,15 @@ msgstr "තේරීමට ක්ලික් කරන්න"
msgid "Click to unselect"
msgstr "තේරීම අවලංගු කිරීමට ක්ලික් කරන්න"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ප්රකාශ අක්රීය කර ඇත."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "ඔබට ඇත්තෙන්ම අවශ්යද "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!"
@@ -1043,160 +1043,202 @@ msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත
msgid "Close"
msgstr "වසන්න"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "සේවාදායකයේ තේරීම"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "විමසුම සඳහා ප්රස්ථාරය පෙන්වන්න"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "මුළු එකතුව"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "පූරණය කෙරෙමින්"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "ඉල්ලීම පිරිසැකසෙමින්"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "තීරුව හලමින්"
-
-# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
-# Terms - ICTA
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "ප්රාථමික මූලය එක් කරමින්"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "දත්තගබඩාව පූරණය"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්රයක්වත් තිබිය යුතුයි"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "වගුව සාදන්න"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "වගු භාවිතා කරන්න"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "සොයමින්"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "සෙවුම් ප්රතිඵල සඟවන්න"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "සෙවුම් ප්රතිඵල පෙන්වන්න"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "පිරික්සමින්"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "ඉවත් කෙරෙමින්"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත"
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "විමසුම් කවුළුව සඟවන්න"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "විමසුම් කවුළුව පෙන්වන්න"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "පේළිගත සංස්කරණය"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "සංස්කරණය කරන්න"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "සේවාදායකයේ තේරීම"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query chart"
+msgid "Live query chart"
+msgstr "විමසුම සඳහා ප්රස්ථාරය පෙන්වන්න"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "මුළු එකතුව"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "සේවාදායකයේ තේරීම"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "ක්රියාවලිය"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "සම්බන්ධතා"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL විමසුම"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "විමසුම් සංඛ්යාලේඛන"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "පූරණය කෙරෙමින්"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "ඉල්ලීම පිරිසැකසෙමින්"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "තීරුව හලමින්"
+
+# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
+# Terms - ICTA
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "ප්රාථමික මූලය එක් කරමින්"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "දත්තගබඩාව පූරණය"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්රයක්වත් තිබිය යුතුයි"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "වගුව සාදන්න"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "වගු භාවිතා කරන්න"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "සොයමින්"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "සෙවුම් ප්රතිඵල සඟවන්න"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "සෙවුම් ප්රතිඵල පෙන්වන්න"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "පිරික්සමින්"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "ඉවත් කෙරෙමින්"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත"
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "විමසුම් කවුළුව සඟවන්න"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "විමසුම් කවුළුව පෙන්වන්න"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "පේළිගත සංස්කරණය"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1204,45 +1246,45 @@ msgstr "සංස්කරණය කරන්න"
msgid "Save"
msgstr "සුරකින්න"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "සඟවන්න"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL විමසුම"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL විමසුම"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "නොසලකන්න"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "සම්බන්දිත මූලය තෝරන්න"
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "අන්ය මූලය තෝරන්න"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "කරුණාකර ප්රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "පෙන්වීම සඳහා තීරය තෝරාගන්න"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1251,27 +1293,27 @@ msgstr ""
"යන්න?"
# අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "ක්ෂේත්රයට අභිරුචියක් එක් කරන්න "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "මුරපදය උත්පාදනය කරන්න"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "උත්පාදනය කරන්න"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "මුරපදය වෙනස් කරන්න"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "තවත්"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1281,258 +1323,258 @@ msgstr ""
"අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", නවතම ස්ථායි අනුවාදය:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "යාවත්කාලීන"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "තෝරන්න"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "පෙර"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "මීලඟ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "අද දින"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "ජනවාරි"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "පෙබරවාරි"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "මාර්තු"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "අප්රේල්"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "මැයි"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "ජුනි"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "ජූලි"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "අගෝස්තු"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "සැප්තැම්බර්"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "ඔක්තෝම්බර්"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "නොවැම්බර්"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "දෙසැම්බර්"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "ජනවාරි"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "පෙබරවාරි"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "මාර්තු"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "අප්රේල්"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "මැයි"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "ජුනි"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "ජූලි"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "අගෝස්තු"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "සැප්තැම්බර්"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "ඔක්තෝම්බර්"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "නොවැම්බර්"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "දෙසැම්බර්"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "ඉරිදා"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "සඳුදා"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "අඟහරුවදා"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "බදාදා"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "බ්රහස්පතින්දා"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "සිකුරාදා"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "සෙනසුරාදා"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "සඳුදා"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "අඟහ"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "බදාදා"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "බ්රහස්"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "සිකුරා"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "සෙනසු"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "ඉරි"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "සඳු"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "අඟ"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "බදා"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "බ්රහ"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "සිකු"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "සෙන"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "සති"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "පැය"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "මිනිත්තු"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "තත්පර"
@@ -1623,7 +1665,7 @@ msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එ
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "දත්තගබඩා"
@@ -1688,25 +1730,25 @@ msgstr "%s has been disabled for this MySQL server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "This MySQL server does not support the %s storage engine."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "වලංගු නොවන දත්තගබඩාව"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "වලංගු නොවන වගු නම"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය"
@@ -1738,10 +1780,9 @@ msgstr "Theme %s not found!"
msgid "Theme path not found for theme %s!"
msgstr "Theme path not found for theme %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "තේමාව / ශෛලිය"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1749,7 +1790,6 @@ msgstr "සම්බන්ධ විය නොහැක : වලංගු නො
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s වෙත ආයුබෝවන්"
@@ -1898,7 +1938,7 @@ msgstr "හවුල්"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "වගු"
@@ -1982,7 +2022,6 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "සේවාදායකය"
@@ -2030,7 +2069,7 @@ msgid "Documentation"
msgstr "ලියකියවිලි"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL විමසුම"
@@ -2038,119 +2077,119 @@ msgstr "SQL විමසුම"
msgid "MySQL said: "
msgstr "MySQL said: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අසමත් විය!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL ය පහදන්න"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP කේත නොමැතිව"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP කේත සාදන්න"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "අලුත් කරන්න"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "පේළිගත"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "පෙර"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "අවසානය"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" දත්තගබඩාව වෙත යන්න ."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2162,41 +2201,41 @@ msgstr ""
msgid "Structure"
msgstr "සැකිල්ල"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "ඇතුල් කරන්න"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "මෙහෙයුම්"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "පරිගණකය තුළ පිරික්සන්න:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත"
@@ -2540,7 +2579,7 @@ msgstr "පෙරනිමි වගු ටැබය"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4455,7 +4494,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "වරප්රසාද"
@@ -4467,7 +4506,7 @@ msgstr "නෛත්යක"
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4660,9 +4699,9 @@ msgstr "ගොනුවේ අක්ෂර කට්ටලය:"
msgid "Compression:"
msgstr "හැකිළීම:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "කිසිවක් නැත"
@@ -4794,39 +4833,59 @@ msgstr "ආකෘති-විශේෂී තෝරා ගැනීම්:"
msgid "Language"
msgstr "භාෂාව"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "ක්ෂේත්ර තීර එක් කරන්න/ඉවත් කරන්න"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "තේරීමට ක්ලික් කරන්න"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d is not valid row number."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "row(s) starting from record #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "තිරස්"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "තිරස් (rotated headers)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "සිරස්"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "in %s mode and repeat headers after %s cells"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "යතුර අනුව තෝරන්න"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4839,99 +4898,99 @@ msgstr "යතුර අනුව තෝරන්න"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "විකල්ප"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "සම්පූර්ණ පාඨ"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "පිටපත් කරන්න"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "පෙළ ඉවත් කරන ලදි"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "පේළි පෙන්වමින්"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "මුළු එකතුව"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "වෙනස් කරන්න"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "විමසුම් ප්රථිඵල සඳහා මෙහෙයුම්"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "මුද්රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "ප්රස්තාරගත කරන්න"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "දසුනක් සාදන්න"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Link not found"
@@ -4979,7 +5038,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -5452,7 +5511,7 @@ msgstr "Available MIME types"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "දායකයා"
@@ -5657,7 +5716,7 @@ msgstr "SQL ප්රතිළුල"
msgid "Generated by"
msgstr "උත්පාදනය කරන ලද්දේ"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -5821,7 +5880,7 @@ msgstr ""
msgid "Add prefix"
msgstr "සුචිය එක් කරන්න"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "වෙනස්කම් නැත"
@@ -6149,14 +6208,14 @@ msgid "Slave status"
msgstr "උපතත්වයන් පෙන්වන්න"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "විචල්යය"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "අගය"
@@ -6387,20 +6446,20 @@ msgid "Synchronize"
msgstr "සමමුහුර්ත කරන්න"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "ද්වීමය ලොගය"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "විචල්යනයන්"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "අක්ෂර කට්ටලය"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "යන්ත්රයන්"
@@ -6450,11 +6509,11 @@ msgstr "දින දර්ශනය"
msgid "Columns"
msgstr "තීර නම්"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
@@ -6687,7 +6746,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "වේලාව"
@@ -6908,7 +6967,7 @@ msgid "Protocol version"
msgstr "ප්රෝටකෝල අනුවාදය"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "භාවිතා කරන්නා"
@@ -7175,7 +7234,7 @@ msgstr "එකතු කරන්න"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "මෙහෙයවනය"
@@ -7349,17 +7408,17 @@ msgstr "ගොනුව නොපවතියි"
msgid "Select binary log to view"
msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "ගොනු"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න"
@@ -7877,7 +7936,7 @@ msgstr "Master සේවාදායකය %s වෙත සාර්ථකව
msgid "This server is configured as master in a replication process."
msgstr "මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක master ලෙස සකසා ඇත."
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Master හි තත්වය පෙන්වන්න"
@@ -8018,178 +8077,167 @@ msgstr ""
"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් "
"කිරීමට ඔබ කැමතිද?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "අලුත් කරන්න"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "මිනිත්තු"
+msgstr[1] "මිනිත්තු"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "තත්පර"
+msgstr[1] "තත්පර"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s was successfully killed."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "හසුරුවනය"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "විමසුම් කෑෂ්"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "ත්රෙඩයන්"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "තාවකාලික දත්ත"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "ප්රමාදිත ඇතුළු කිරීම්"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "යතුරු කෑෂ් කිරීම"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "ඈඳුම්"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "තේරීම"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "විවෘත වගු පෙන්වන්න"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "උපදායකයන් පෙන්වන්න"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "උපතත්වයන් පෙන්වන්න"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "ධාවන කාල තොරතුරු"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "සේවාදායකයේ තේරීම"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "විමසුම් සංඛ්යාලේඛන"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "slave තත්ව වගුව බලන්න"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "අලුත් කරන්න"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "තත්පර"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "තත්පර"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "මිනිත්තු"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "මුරපදය වෙනස් නොකරන්න"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "විවෘත වගු පෙන්වන්න"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "පැයකට"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "මිනිත්තුවකට"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "තප්පරයකට"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "විමසුම් වර්ගය"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "මෙම MySQL සේවාදායකය %s තිස්සේ ක්රියාත්මකයි. මෙය ඇරඹුයේ %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8197,31 +8245,31 @@ msgstr ""
"මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master හා slave "
"ලෙස ක්රියාකරයි."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master ලෙස ක්රියාකරයි."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී slave ලෙස ක්රියාකරයි."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ "
-"අංශය වෙත යන්න"
+"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න"
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "අනුරූ කරණයේ තත්වය"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "තදබදය"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8229,45 +8277,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "ලබන ලද"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "යවන ලද"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "සම්බන්ධතා"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "උපරිම සමගාමී සම්බන්ධතා"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "අසාර්ථක උත්සාහයන්"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "අත්හැර දමන ලදි"
-#: server_status.php:778
-msgid "Processes"
-msgstr "ක්රියාවලිය"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "හැඳුනුම් අංකය"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8277,16 +8321,16 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8298,109 +8342,109 @@ msgstr ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "How many temporary files mysqld has created."
-#: server_status.php:846
-msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
-
-#: server_status.php:847
-msgid ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-msgstr ""
-"The number of rows written with INSERT DELAYED for which some error occurred "
-"(probably duplicate key)."
-
-#: server_status.php:848
-msgid ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-msgstr ""
-"The number of INSERT DELAYED handler threads in use. Every different table "
-"on which one uses INSERT DELAYED gets its own thread."
-
-#: server_status.php:849
-msgid "The number of INSERT DELAYED rows written."
-msgstr "The number of INSERT DELAYED rows written."
-
-#: server_status.php:850
-msgid "The number of executed FLUSH statements."
-msgstr "The number of executed FLUSH statements."
-
-#: server_status.php:851
-msgid "The number of internal COMMIT statements."
-msgstr "The number of internal COMMIT statements."
-
-#: server_status.php:852
-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:853
-msgid ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-msgstr ""
-"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
-"table with a given name. This is called discovery. Handler_discover "
-"indicates the number of time tables have been discovered."
-
-#: server_status.php:854
-msgid ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-msgstr ""
-"The number of times the first entry was read from an index. If this is high, "
-"it suggests that the server is doing a lot of full index scans; for example, "
-"SELECT col1 FROM foo, assuming that col1 is indexed."
-
#: server_status.php:855
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
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."
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
#: server_status.php:856
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."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
msgstr ""
-"The number of requests to read the next row in key order. This is "
-"incremented if you are querying an index column with a range constraint or "
-"if you are doing an index scan."
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
#: server_status.php:857
msgid ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
msgstr ""
-"The number of requests to read the previous row in key order. This read "
-"method is mainly used to optimize ORDER BY ... DESC."
+"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:858
-msgid ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
-msgstr ""
-"The number of requests to read a row based on a fixed position. This is high "
-"if you are doing a lot of queries that require sorting of the result. You "
-"probably have a lot of queries that require MySQL to scan whole tables or "
-"you have joins that don't use keys properly."
+msgid "The number of INSERT DELAYED rows written."
+msgstr "The number of INSERT DELAYED rows written."
#: server_status.php:859
+msgid "The number of executed FLUSH statements."
+msgstr "The number of executed FLUSH statements."
+
+#: server_status.php:860
+msgid "The number of internal COMMIT statements."
+msgstr "The number of internal COMMIT statements."
+
+#: server_status.php:861
+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:862
+msgid ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+msgstr ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+
+#: server_status.php:863
+msgid ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgstr ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+
+#: server_status.php:864
+msgid ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+msgstr ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+
+#: server_status.php:865
+msgid ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+msgstr ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+
+#: server_status.php:866
+msgid ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+msgstr ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+
+#: server_status.php:867
+msgid ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+
+#: server_status.php:868
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 "
@@ -8412,36 +8456,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "නිදහස් පිටු ගණන."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8451,7 +8495,7 @@ msgstr ""
"being read or written or that can't be flushed or removed for some other "
"reason."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8463,11 +8507,11 @@ msgstr ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total size of buffer pool, in pages."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8475,7 +8519,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8483,11 +8527,11 @@ msgstr ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "The number of logical read requests InnoDB has done."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8495,7 +8539,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:874
+#: server_status.php:883
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 "
@@ -8509,55 +8553,55 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8565,35 +8609,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "The number of pages created."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8601,51 +8645,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "කියවන ලද පිටු ගණන."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "ලියන ලද පිටු ගණන."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "The number of rows read from InnoDB tables."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "The number of rows updated in InnoDB tables."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8653,7 +8697,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:907
+#: server_status.php:916
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."
@@ -8661,7 +8705,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:908
+#: server_status.php:917
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 "
@@ -8671,11 +8715,11 @@ msgstr ""
"that indicates the maximum number of blocks that have ever been in use at "
"one time."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8685,15 +8729,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8703,17 +8747,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8721,38 +8765,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8764,7 +8808,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8772,19 +8816,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8792,11 +8836,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -8804,7 +8848,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8812,15 +8856,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -8828,78 +8872,78 @@ msgstr ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
-#: server_status.php:936
+#: server_status.php:945
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:937
-msgid ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-msgstr ""
-"The number of threads that have taken more than slow_launch_time seconds to "
-"create."
-
-#: server_status.php:938
-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:939
-msgid ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-msgstr ""
-"The number of merge passes the sort algorithm has had to do. If this value "
-"is large, you should consider increasing the value of the sort_buffer_size "
-"system variable."
-
-#: server_status.php:940
-msgid "The number of sorts that were done with ranges."
-msgstr "The number of sorts that were done with ranges."
-
-#: server_status.php:941
-msgid "The number of sorted rows."
-msgstr "The number of sorted rows."
-
-#: server_status.php:942
-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:943
-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:944
-msgid ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-msgstr ""
-"The number of times that a table lock could not be acquired immediately and "
-"a wait was needed. If this is high, and you have performance problems, you "
-"should first optimize your queries, and then either split your table or "
-"tables or use replication."
-
-#: server_status.php:945
-msgid ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-msgstr ""
-"The number of threads in the thread cache. The cache hit rate can be "
-"calculated as Threads_created/Connections. If this value is red you should "
-"raise your thread_cache_size."
-
#: server_status.php:946
-msgid "The number of currently open connections."
-msgstr "The number of currently open connections."
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
#: server_status.php:947
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:948
+msgid ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+msgstr ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+
+#: server_status.php:949
+msgid "The number of sorts that were done with ranges."
+msgstr "The number of sorts that were done with ranges."
+
+#: server_status.php:950
+msgid "The number of sorted rows."
+msgstr "The number of sorted rows."
+
+#: server_status.php:951
+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:952
+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:953
+msgid ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+
+#: server_status.php:954
+msgid ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+msgstr ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+
+#: server_status.php:955
+msgid "The number of currently open connections."
+msgstr "The number of currently open connections."
+
+#: server_status.php:956
+msgid ""
"The number of threads created to handle connections. If Threads_created is "
"big, you may want to increase the thread_cache_size value. (Normally this "
"doesn't give a notable performance improvement if you have a good thread "
@@ -8910,7 +8954,7 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
@@ -9033,7 +9077,7 @@ msgstr "සේවාදායකයේ විචල්යයන් සහ ස
msgid "Session value"
msgstr "සැසි අගය"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "ගෝලීය අගය"
@@ -9319,39 +9363,39 @@ msgstr "මූලය කෙටිය. අවම වශයෙන් අක්ෂ
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] විශේෂ සලකුණු තිබිය යුතුය."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "අන්ය අගයන් පිරික්සන්න"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "%1$d පේළිය ඇතුල් කරන ලදි"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP කේත ලෙස පෙන්වමින්"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "SQL විමසුම පෙන්වමින්"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "තහවුරු කරන ලද SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "ලේබලය"
@@ -9728,23 +9772,23 @@ msgstr "අන්ය මූල නිරෝධය"
msgid "No rows selected"
msgstr "පේළි කිසිවක් තෝරගෙන නැත"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "පේළි තෝරන්න (අවම වශයෙන් එකක්):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්යාංශය යටතේ):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "පිටුවකට පේළි ගණන"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:"
@@ -10029,6 +10073,12 @@ msgstr "දසුනේ නම"
msgid "Rename view to"
msgstr "දසුනේ නම වෙනස් කරන්න"
+#~ msgid "Theme / Style"
+#~ msgstr "තේමාව / ශෛලිය"
+
+#~ msgid "seconds"
+#~ msgstr "තත්පර"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "විමසුම් සඳහා ගතවූ කාල සැසඳිම (මයික්රෝ තත්පර)"
@@ -10041,8 +10091,6 @@ msgstr "දසුනේ නම වෙනස් කරන්න"
#~ msgid "GD extension is needed for charts."
#~ msgstr "ප්රස්තාර සඳහා GD දිගුව අවැසිය."
-# මෙවලම් ඉඟි = tooltips. Source: Glossary of Information Technology Terms -
-# ICTA
#~ msgid "JSON encoder is needed for chart tooltips."
#~ msgstr "ප්රස්තාරයේ මෙවලම් ඉඟි සඳහා JSON කේතාංකනය අවැසිය."
diff --git a/po/sk.po b/po/sk.po
index 4d1b5a827b..2cd78f56f4 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-06-03 14:53+0200\n"
"Last-Translator: Martin Lacina \n"
"Language-Team: slovak \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Zobraziť všetko"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu "
"bezpečnostných nastavení."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Hľadať"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Hľadať"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,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:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Popis"
@@ -137,7 +137,7 @@ msgstr "Komentár k tabuľke"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Stĺpce"
@@ -150,7 +150,7 @@ msgstr "Stĺpce"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -166,7 +166,7 @@ msgstr "Typ"
msgid "Null"
msgstr "Nulový"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Linkovať na"
msgid "Comments"
msgstr "Komentáre"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Komentáre"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nie"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Nie"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Zobraziť dump (schému) databázy"
msgid "No tables found in database."
msgstr "Neboli nájdené žiadne tabuľky v tejto datábaze."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Označiť všetko"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Odznačiť všetko"
@@ -271,7 +271,7 @@ msgstr "Databáza %s bola skopírovaná na %s"
msgid "Rename database to"
msgstr "Premenovať databázu na"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Príkaz"
@@ -332,7 +332,7 @@ msgstr "Prepnúť na skopírovanú databázu"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Upraviť alebo exportovať relačnú schému"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabuľka"
@@ -373,7 +373,7 @@ msgstr "Riadkov"
msgid "Size"
msgstr "Veľkosť"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "práve sa používa"
@@ -399,7 +399,7 @@ msgstr "Posledná zmena"
msgid "Last check"
msgstr "Posledná kontrola"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -420,25 +420,25 @@ msgid "visual builder"
msgstr "vizuálneho návrhára"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Triediť"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Vzostupne"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Zostupne"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Ukázať"
@@ -461,7 +461,7 @@ msgstr "Zmazať"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "alebo"
@@ -490,39 +490,39 @@ msgstr "Použiť tabuľky"
msgid "SQL query on database %s :"
msgstr "SQL dopyt v databáze %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Odošli dopyt"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Prístup zamietnutý"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "najmenej jedno zo slov"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "všetky slová"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "presný výraz"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "ako regulárny výraz"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Prehľadať výsledky na \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
@@ -530,19 +530,19 @@ msgstr[0] "%s výskyt v tabuľke %s "
msgstr[1] "%s výskyty v tabuľke %s "
msgstr[2] "%s výskytov v tabuľke %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Prechádzať"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Odstrániť nájdené záznamy z tabuľky %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -553,7 +553,7 @@ msgstr "Odstrániť nájdené záznamy z tabuľky %s?"
msgid "Delete"
msgstr "Zmazať"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -561,59 +561,59 @@ msgstr[0] "Celkovo: %s výskyt"
msgstr[1] "Celkovo: %s výskyty"
msgstr[2] "Celkovo: %s výskytov"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Hľadať v databáze"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr ""
"Slovo(á) alebo hodnotu(y), ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Nájdi:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Slová sú rozdelené medzerou (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "V tabuľke(ách):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "V tabuľke:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "V tejto databáze neboli nájdené žiadne tabuľky"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabuľka %s bola vyprázdená"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Pohľad %s bol odstránený"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabuľka %s bola odstránená"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Sledovanie je aktívne."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Sledovanie nie je aktívne."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -621,106 +621,106 @@ msgid ""
msgstr ""
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Pohľad"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikácia"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Celkom"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Výber:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Označiť všetko"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Odznačiť všetko"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Zvoliť neoptimálne"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportovať"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Náhľad k tlači"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Vyprázdniť"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Odstrániť"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Skontrolovať tabuľku"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimalizovať tabuľku"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Opraviť tabuľku"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyzovať tabuľku"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Pridať predponu k tabuľke"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Nahradiť predponu tabuľky"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Skopírovať tabuľku s predponou"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dátový slovník"
@@ -735,9 +735,9 @@ msgstr "Sledované tabuľky"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Databáza"
@@ -753,8 +753,8 @@ msgstr "Vytvorené"
msgid "Updated"
msgstr "Aktualizované"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Stav"
@@ -899,7 +899,7 @@ msgstr "Záznam z obľúbených bol zmazaný."
msgid "Showing bookmark"
msgstr "Zobrazujem obľúbený príkaz"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Príkaz %s bol zaradený medzi obľúbené"
@@ -927,7 +927,7 @@ msgstr ""
"časový limit behu skriptu v php."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -953,15 +953,15 @@ msgstr "Kliknite pre vybranie"
msgid "Click to unselect"
msgstr "Kliknite pre zrušenie vyberu"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Príkaz \"DROP DATABASE\" je zakázaný."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Skutočne chcete vykonať príkaz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte sa ZRUŠIŤ celú databázu!"
@@ -1036,10 +1036,8 @@ msgstr "Heslá sa nezhodujú!"
#: js/messages.php:58 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
-#, fuzzy
-#| msgid "Any user"
msgid "Add user"
-msgstr "Akýkoľvek používateľ"
+msgstr "Pridať používateľa"
#: js/messages.php:59
msgid "Reloading Privileges"
@@ -1054,159 +1052,199 @@ msgstr "Odstránenie vybraných používateľov"
msgid "Close"
msgstr "Zavrieť"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Voľba serveru"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Zobraziť graf dopytov"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Celkom"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Načítanie"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Prebieha spracovanie požiadavka"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Chyba pri spracovanie požiadavku"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Odstraňujem stĺpce"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Pridavam primarny kľúč"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Premenovávam databázy"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Znovu načítať databázu"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Kopírujem databázu"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Mením znakovú sadu"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Vytvoriť tabuľku"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Použiť tabuľky"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Vyhľadávam"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Skryť výsledky vyhľadávania"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Zobraziť výsledky vyhľadávania"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Prechádzať"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Odstraňujem"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "Skryť vyhľadávacie pole"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Zobrazit vyhľadávacie pole"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Tu upraviť"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upraviť"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Voľba serveru"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query chart"
+msgid "Live query chart"
+msgstr "Zobraziť graf dopytov"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Celkom"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Voľba serveru"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesy"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Spojenia"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL dopyty"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Štatistika dopytov"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Načítanie"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Prebieha spracovanie požiadavka"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Chyba pri spracovanie požiadavku"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Odstraňujem stĺpce"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Pridavam primarny kľúč"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Premenovávam databázy"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Znovu načítať databázu"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopírujem databázu"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Mením znakovú sadu"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Vytvoriť tabuľku"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Pridať tabuľku"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Vyhľadávam"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Skryť výsledky vyhľadávania"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Zobraziť výsledky vyhľadávania"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Prechádzať"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Odstraňujem"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Skryť vyhľadávacie pole"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Zobrazit vyhľadávacie pole"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Tu upraviť"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1214,41 +1252,41 @@ msgstr "Upraviť"
msgid "Save"
msgstr "Uložiť"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skryť"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Skryť parametre vyhľadávania"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Zobraziť parametre vyhľadávania"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorovať"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Zvoliť odkazovaný kľúč"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Zvoliť cudzí kľúč"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Zoľte, prosím, primárny alebo unikátny kľúč"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Zvoľte, ktoré polia zobraziť"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1256,27 +1294,27 @@ msgstr ""
"Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. "
"Chcete pokračovať?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Pridať voľbu pre stĺpec "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Vytvoriť heslo"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Vytvoriť"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Zmeniť heslo"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Viac"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1286,258 +1324,258 @@ msgstr ""
"Najnovšia verzia je %s a bola vydaná %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", posledná stabilná verzia:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "aktuálne"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Hotovo"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Predchádzajúci"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Ďalší"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Dnes"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Január"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Február"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Marec"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Apríl"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Máj"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Jún"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Júl"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "August"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "September"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Október"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "November"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Nedeľa"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Pondelok"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Utorok"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Streda"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Štvrtok"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Piatok"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ne"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Po"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Út"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "St"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Št"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pi"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Ut"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Št"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Pi"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "týž"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minúty"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekundy"
@@ -1634,7 +1672,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databázy"
@@ -1670,9 +1708,8 @@ msgstr[1] "Boli vložené %1$d riadky."
msgstr[2] "Bolo vložených %1$d riadkov."
#: libraries/RecentTable.class.php:113
-#, fuzzy
msgid "Could not save recent table"
-msgstr "Slave replikácia"
+msgstr "Nepodarilo sa uložiť najnovšíu tabuľku"
#: libraries/RecentTable.class.php:148
#, fuzzy
@@ -1707,25 +1744,25 @@ msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Tento MySQL server nepodporuje úložný systém %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Chybná databáza"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Chybné meno tabuľky"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabuľka %s bola premenovaná na %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1757,10 +1794,9 @@ msgstr "Vzhľad %s nebol nájdený!"
msgid "Theme path not found for theme %s!"
msgstr "Nebola nájdená platná cesta ku vzhľadu %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Téma / Štýl"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1768,7 +1804,6 @@ msgstr "Nepodarilo sa pripojiť: chybné nastavenia."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Vitajte v %s"
@@ -1919,7 +1954,7 @@ msgstr "zdieľaný"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabuľky"
@@ -2003,7 +2038,6 @@ msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2051,7 +2085,7 @@ msgid "Documentation"
msgstr "Dokumentácia"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL dopyt"
@@ -2059,119 +2093,119 @@ msgstr "SQL dopyt"
msgid "MySQL said: "
msgstr "MySQL hlási: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Nepodarilo sa pripojiť k SQL validátoru!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Vysvetliť SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Preskočiť vysvetlenie SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Bez PHP kódu"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Vytvoriť PHP kód"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Obnoviť"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Bez kontroly SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Skontrolovať SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Upraviť dopyt na tejto stránke"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Upraviť tu"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilovanie"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d.%B %Y, %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dní, %s hodín, %s minút a %s sekúnd"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Začiatok"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Predchádzajúci"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Prejsť na databázu "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2183,41 +2217,41 @@ msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s"
msgid "Structure"
msgstr "Štruktúra"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Vložiť"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operácie"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Prechádzať váš počítač:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Zvoľte súbor z upload adresára %s web servera:"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Adresár určený pre upload súborov sa nedá otvoriť"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Žiadny súbor pre nahrávanie"
@@ -2577,7 +2611,7 @@ msgstr "Východzí panel tabuľky"
msgid "Show binary contents as HEX by default"
msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Zobraziť binárny obsah v HEX formáte"
@@ -4595,7 +4629,7 @@ msgstr "Dizajnér"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Oprávnenia"
@@ -4607,7 +4641,7 @@ msgstr ""
msgid "Return type"
msgstr "Návratový typ"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4792,9 +4826,9 @@ msgstr "Znaková sada súboru:"
msgid "Compression:"
msgstr "Kompresia:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Žiadny"
@@ -4921,37 +4955,57 @@ msgstr ""
msgid "Language"
msgstr "Jazyk"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "Stĺpce s textovou oblasťou"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Kliknite pre vybranie"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d nie je platné číslo riadku."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "riadky začínajúce od riadku #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontálnom"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "vodorovnom (otočené hlavičky)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikálnom"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "v(o) %s móde a opakovať hlavičky po každých %s bunkách"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Zoradiť podľa kľúča"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4964,94 +5018,94 @@ msgstr "Zoradiť podľa kľúča"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Nastavenia"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Čiastočné texty"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Plné texty"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relačná schéma"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Relačné zobrazenie stĺpcov"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformácia pri prehliadaní"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Riadok bol zmazaný"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Zabiť"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "v dopyte"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Zobrazené riadky"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "celkovo"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Dopyt zabral %01.4f s"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Zmeniť"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operácie s výsledkami dopytu"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Náhľad tlače (s kompletnými textami)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Zobraziť graf"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Vytvoriť relaciu"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Linka nebola nájdená"
@@ -5098,7 +5152,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Vyrovnávacia Pamäť"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Stav InnoDB"
@@ -5556,7 +5610,7 @@ msgstr "Zobraziť MIME typy"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Hostiteľ"
@@ -5759,7 +5813,7 @@ msgstr "výsledok SQL"
msgid "Generated by"
msgstr "Vygenerované"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -5911,7 +5965,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Odstrániť index/indexy"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Žiadna zmena"
@@ -6243,14 +6297,14 @@ msgid "Slave status"
msgstr "Zobraziť stav podriadených hostov"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Premenná"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Hodnota"
@@ -6476,20 +6530,20 @@ msgid "Synchronize"
msgstr "Synchronizovať"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binárny log"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Premenné"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Znakové sady"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Systémy"
@@ -6534,11 +6588,11 @@ msgstr "Vyčistiť"
msgid "Columns"
msgstr "Stĺpce"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Pridať tento SQL dopyt do obľúbených"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Dovoliť používať túto položku všetkým používateľom"
@@ -6765,7 +6819,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Pridať nového používateľa"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Čas"
@@ -6948,7 +7002,7 @@ msgid "Protocol version"
msgstr "Verzia protokolu"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Používateľ"
@@ -7211,7 +7265,7 @@ msgstr "Zlúčiť"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operátor"
@@ -7387,17 +7441,17 @@ msgstr "Súbor neexistuje"
msgid "Select binary log to view"
msgstr "Vyberte binárny log na zobrazenie"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Súbory"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Zobraziť skrátene dopyty"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Zobraziť kompletné dopyty"
@@ -7923,7 +7977,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Zobraziť stav master replikácie"
@@ -8064,175 +8118,166 @@ msgstr ""
"Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli "
"by ste ho nakonfigurovať ?"
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Vlákno %s bol úspešne zabité."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Manipulačná Rutina"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Vyrovnávacia pamäť príkazov"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Počet vlákien"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Dočasné dáta"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Odložené vloženia"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Vyrovnávacia pamäť kľúčov"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Zjednotenia"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Zoraďovanie"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Koordinátor transakcií"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Vyprázdniť (uzavrieť) všetky tabuľky"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Zobraziť otvorené tabuľky"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Zobraziť podriadené hosty"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Zobraziť stav podriadených hostov"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Stav serveru"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Voľba serveru"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Štatistika dopytov"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Obnoviť"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekundy"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekundy"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "Minúty"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Minúty"
+msgstr[1] "Minúty"
+msgstr[2] "Minúty"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Sekundy"
+msgstr[1] "Sekundy"
+msgstr[2] "Sekundy"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Vlákno %s bol úspešne zabité."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Manipulačná Rutina"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Vyrovnávacia pamäť príkazov"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Počet vlákien"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Dočasné dáta"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Odložené vloženia"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Vyrovnávacia pamäť kľúčov"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Zjednotenia"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Zoraďovanie"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Koordinátor transakcií"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Vyprázdniť (uzavrieť) všetky tabuľky"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Zobraziť otvorené tabuľky"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Zobraziť podriadené hosty"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Zobraziť stav podriadených hostov"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Stav serveru"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Voľba serveru"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nezmeniť heslo"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Súvisiace odkazy"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "za hodinu"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "za minútu"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "za sekundu"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Typ dopytu"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Tento server beží %s. Bol spustený %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8240,34 +8285,34 @@ msgstr ""
"Tento server je nakonfigurovaný ako master a slave v "
"replikačnom procese."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Tento MYSQL server pracuje ako slave v replikačnom procese."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Stav replikácie"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Vyťaženie"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8275,45 +8320,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Prijaté"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Odoslané"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Spojenia"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "max. súčasných pripojení"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Nepodarených pokusov"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Prerušené"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesy"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Nepodarilo sa pripojiť k MySQL serveru"
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8323,16 +8364,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8344,11 +8385,11 @@ msgstr ""
"hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na "
"disk."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Počet dočasných súborov vytvorených servrom mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8356,7 +8397,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:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8364,7 +8405,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:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8372,23 +8413,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Počet riadkov vložených príkazom INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Počet vykonaných príkazov FLUSH."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Počet interných príkazov COMMIT."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8398,7 +8439,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:854
+#: server_status.php:863
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, "
@@ -8408,7 +8449,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:855
+#: server_status.php:864
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."
@@ -8416,7 +8457,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:856
+#: server_status.php:865
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 "
@@ -8426,7 +8467,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8435,7 +8476,7 @@ msgstr ""
"čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... "
"DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8448,7 +8489,7 @@ msgstr ""
"kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne "
"nevyužívajú kľúče."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8460,35 +8501,35 @@ msgstr ""
"tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú "
"dostupné indexy."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Počet interných príkazov ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky."
-#: server_status.php:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Počet nečistých stránok."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Počet voľných stránok."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8498,7 +8539,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:868
+#: server_status.php:877
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 "
@@ -8510,11 +8551,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8522,7 +8563,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8530,11 +8571,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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Počet požiadavkov na logické načítavanie."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8542,7 +8583,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:874
+#: server_status.php:883
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 "
@@ -8556,88 +8597,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Počet vykonaných fsync() operácií."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Aktuálny počet prebiehajúcich fsync() operácií."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Počet aktuálne prebiehajúcich načítavaní."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Počet aktuálne prebiehajúcich zápisov."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Množstvo už načítaných dát, v bajtoch."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Celkový počet načítaní dát."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Celkový počet zápisov dát."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Množstvo už zapísaných dát, v bajtoch."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Počet požiadaviek na zápis do logovacieho súboru."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Počet fyzických zápisov do logovacieho súboru."
-#: server_status.php:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Počet prebiehajúcich zápisov do logovacieho súboru."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Množstvo bajtov zapísaných do logovacieho súboru."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Počet vytvorených stránok."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8646,51 +8687,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Počet načítaných stránok."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Počet zapísaných stránok."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Počet zámkov na riadky, na ktoré sa čaká."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8699,7 +8740,7 @@ msgstr ""
"neboli zapísané na disk. Predtým sa táto hodnota nazývala "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8707,7 +8748,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:908
+#: server_status.php:917
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 "
@@ -8716,11 +8757,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8731,15 +8772,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8750,17 +8791,17 @@ msgstr ""
"požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované "
"žiadne príkazy."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8768,38 +8809,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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Počet otvorených súborov."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Počet práve otvorených tabuliek."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
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:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Počet zásahov vyrovnávacej pamäti."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Počet príkazov pridaných do vyrovnávacej pamäti."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8811,7 +8852,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8819,19 +8860,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti."
-#: server_status.php:927
+#: server_status.php:936
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:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stav failsafe replikácie (zatiaľ neimplementované)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8839,12 +8880,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -8853,7 +8894,7 @@ msgstr ""
"(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy "
"vašich tabuliek.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8861,15 +8902,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -8877,13 +8918,13 @@ msgstr ""
"Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o "
"znovuobnovenie transakcie."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -8891,14 +8932,14 @@ msgstr ""
"Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota "
"slow_launch_time."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -8908,23 +8949,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Počet rozsahom obmedzených zoraďovaní."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Počet zoradených riadkov."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -8936,7 +8977,7 @@ msgstr ""
"najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo "
"použiť replikáciu."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -8946,11 +8987,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Počet momentálne otvorených spojení."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8961,7 +9002,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Počet aktívnych (nespiacich) vlákien."
@@ -9082,7 +9123,7 @@ msgstr "Premenné a nastavenia serveru"
msgid "Session value"
msgstr "Hodnota sedenia"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globálna hodnota"
@@ -9361,39 +9402,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Prejsť hodnoty cudzích kľúčov"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Zobrazujem ako PHP kód"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Zobrazujem SQL dotaz"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Skontrolované SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexami v tabuľke `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Názov"
@@ -9767,23 +9808,23 @@ msgstr ""
msgid "No rows selected"
msgstr "Nebol vybraný žiadny riadok"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Zvoliť stĺpec (najmenej jeden):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "záznamov na stránku"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Zobraziť zoradené:"
@@ -10061,6 +10102,12 @@ msgstr "Meno pohľadu"
msgid "Rename view to"
msgstr "Premenovať pohľad na"
+#~ msgid "Theme / Style"
+#~ msgstr "Téma / Štýl"
+
+#~ msgid "seconds"
+#~ msgstr "Sekundy"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Porovnanie času vykonania dotazu (v mikrosekundách)"
@@ -10135,8 +10182,6 @@ msgstr "Premenovať pohľad na"
#~ msgid "Show table row links on right side"
#~ msgstr "Zobrazí odkazy riadkov tabuľky na pravej strane"
-#, fuzzy
-#~| msgid "Dumping data for table"
#~ msgid "Delete the matches for the "
#~ msgstr "Sťahujem dáta pre tabuľku"
diff --git a/po/sl.po b/po/sl.po
index e9b386a772..fa7330eaff 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-10 22:40+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-16 22:33+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
"Language: sl\n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Pokaži vse"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"Ciljnega okna ni bilo mogoče osvežiti. Morda ste zaprli nadrejeno okno ali "
"pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Iskanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Iskanje"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Opis"
@@ -137,7 +137,7 @@ msgstr "Pripomba tabele"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Stolpec"
@@ -150,7 +150,7 @@ msgstr "Stolpec"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Vrsta"
@@ -166,7 +166,7 @@ msgstr "Vrsta"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Povezave z"
msgid "Comments"
msgstr "Pripombe"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Pripombe"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Preglej povzetek stanja zbirke podatkov"
msgid "No tables found in database."
msgstr "V zbirki podatkov ni mogoče najti tabel."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Izberi vse"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Prekliči izbor vsega"
@@ -271,7 +271,7 @@ msgstr "Zbirka podatkov %s je kopirana v %s"
msgid "Rename database to"
msgstr "Preimenuj zbirko podatkov v"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Ukaz"
@@ -332,7 +332,7 @@ msgstr "Preklopi na kopirano zbirko podatkov"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Uredi ali izvozi relacijsko shemo"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabela"
@@ -373,7 +373,7 @@ msgstr "vrstic"
msgid "Size"
msgstr "Velikost"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "v uporabi"
@@ -399,7 +399,7 @@ msgstr "Zadnjič posodobljeno"
msgid "Last check"
msgstr "Zadnjič pregledano"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -421,25 +421,25 @@ msgid "visual builder"
msgstr "vidni graditelj"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Razvrsti"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Naraščajoče"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Padajoče"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Pokaži"
@@ -462,7 +462,7 @@ msgstr "Briši"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ali"
@@ -491,39 +491,39 @@ msgstr "Uporabi tabele"
msgid "SQL query on database %s :"
msgstr "Poizvedba SQL na zbirki podatkov %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Dostop zavrnjen"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "katerokoli besedo"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "vse besede"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "točno določeno frazo"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "kot običajni izraz (regular expression)"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Rezultati iskanja \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
@@ -532,19 +532,19 @@ msgstr[1] "%s zadetka v tabeli %s "
msgstr[2] "%s zadetki v tabeli %s "
msgstr[3] "%s zadetkov v tabeli %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Prebrskaj"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Izbrišem zadetke v tabeli %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -555,7 +555,7 @@ msgstr "Izbrišem zadetke v tabeli %s?"
msgid "Delete"
msgstr "Izbriši"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -564,164 +564,164 @@ msgstr[1] "Skupaj: %s zadetka"
msgstr[2] "Skupaj: %s zadetki"
msgstr[3] "Skupaj: %s zadetkov"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Išči v zbirki podatkov"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Iskane besede ali vrednosti (nadomestni znak: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Najdi:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Besede so ločene s presledkom (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "V tabelah:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "V stolpcu:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "V zbirki podatkov ni mogoče najti tabel"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s je izpraznjena"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Pogled %s je zavržen"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s je zavržena"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Sledenje je aktivno."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Sledenje ni aktivno."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"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:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Pogled"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Podvojevanje"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Vsota"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Z označenim:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Označi vse"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Odznači vse"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Preveri prekoračene"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvozi"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Pogled za tiskanje"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Izprazni"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Zavrzi"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Preveri tabelo"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimiraj tabelo"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Popravi tabelo"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analiziraj tabelo"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Dodaj predpono tabeli"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Zamenjaj predpono tabele"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Kopiraj tabelo s predpono"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Slovar podatkov"
@@ -736,9 +736,9 @@ msgstr "Sledene tabele"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Zbirka podatkov"
@@ -754,8 +754,8 @@ msgstr "Ustvarjeno"
msgid "Updated"
msgstr "Posodobljeno"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Stanje"
@@ -899,7 +899,7 @@ msgstr "Zaznamek je odstranjen."
msgid "Showing bookmark"
msgstr "Prikazovanje zaznamka"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Zaznamek %s je ustvarjen"
@@ -927,7 +927,7 @@ msgstr ""
"povečate vaše časovne omejitve PHP."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -953,15 +953,15 @@ msgstr "Kliknite za označitev"
msgid "Click to unselect"
msgstr "Kliknite za odznačitev"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Ali res želite "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!"
@@ -1014,10 +1014,8 @@ msgstr "To ni število!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Število dnevniških datotek"
+msgstr "Skupno število"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1053,156 +1051,194 @@ msgstr "Odstranjevanje izbranih uporabnikov"
msgid "Close"
msgstr "Zapri"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Izbira strežnika"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Prikaži graf poizvedbe"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Skupaj"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Nalaganje"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Obdelovanje zahteve"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Napaka v obdelovanju zahteve"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Brisanje stolpca"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Dodajanje primarnega ključa"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Preimenovanje zbirk podatkov"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Ponovno nalaganje zbirke podatkov"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Kopiranje zbirke podatkov"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Spreminjanje nabora znakov"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Tabele morajo imeti vsaj en stolpec"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Ustvari tabelo"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Vstavi tabelo"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Iskanje"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Skrij rezultate iskanja"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Prikaži rezultate iskanja"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Brskanje"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Brisanje"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "Skrij polje poizvedbe"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Prikaži polje poizvedbe"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Urejanje v vrstici"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uredi"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Grafikon prometa v živo"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Grafikon povezav/procesov v živo"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Grafikon poizvedb v živo"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Statični podatki"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Skupaj"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Drugo"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Promet strežnika"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesi"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Povezave"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "Poizvedbe SQL"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Statistika poizvedb"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Nalaganje"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Obdelovanje zahteve"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Napaka v obdelovanju zahteve"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Brisanje stolpca"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Dodajanje primarnega ključa"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Preimenovanje zbirk podatkov"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Ponovno nalaganje zbirke podatkov"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopiranje zbirke podatkov"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Spreminjanje nabora znakov"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabele morajo imeti vsaj en stolpec"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Ustvari tabelo"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Vstavi tabelo"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Iskanje"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Skrij rezultate iskanja"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Prikaži rezultate iskanja"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Brskanje"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Brisanje"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Skrij polje poizvedbe"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Prikaži polje poizvedbe"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Urejanje v vrstici"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1210,41 +1246,41 @@ msgstr "Uredi"
msgid "Save"
msgstr "Shrani"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skrij"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Skrij iskalne pogoje"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Prikaži iskalne pogoje"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Prezri"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Izberite referenčni ključ"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Izberite tuji ključ"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Prosimo, izberite primarni ključ ali unikatni ključ"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Izberite stolpec za prikaz"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1252,27 +1288,27 @@ msgstr ""
"Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. "
"Želite nadaljevati?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Dodaj možnost za stolpec "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Ustvari geslo"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Ustvari"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Spremeni geslo"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Več"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1282,258 +1318,258 @@ msgstr ""
"Najnovejša različica je %s, izdana %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", zadnja ustaljena različica:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "posodobljeno"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Končano"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Prejšnji"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Naslednji"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Danes"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "januar"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "februar"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "marec"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "april"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "maj"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "junij"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "julij"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "avgust"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "september"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "oktober"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "november"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "dec"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "nedelja"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "ponedeljek"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "torek"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "sreda"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "četrtek"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "petek"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "sobota"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "ned"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "pon"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "sre"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "čet"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "pet"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "sob"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "ne"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "po"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "sr"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "če"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "pe"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "so"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "ted."
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Ura"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekunda"
@@ -1628,7 +1664,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Zbirke podatkov"
@@ -1699,25 +1735,25 @@ msgstr "%s je onemogočeno za ta strežnik MySQL."
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:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Neveljavna zbirka podatkov"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Neveljavno ime tabele"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Napaka pri preimenovanju tabele %1$s v %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabela %s je preimenovana v %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel"
@@ -1749,10 +1785,9 @@ msgstr "Tema %s ni bila najdena!"
msgid "Theme path not found for theme %s!"
msgstr "Pot teme ni bila najdena za temo %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Slog"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1760,7 +1795,6 @@ msgstr "Povezava ni mogoča: neveljavne nastavitve."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Dobrodošli v %s"
@@ -1909,7 +1943,7 @@ msgstr "deljeno"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabele"
@@ -1995,7 +2029,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Strežnik"
@@ -2043,7 +2076,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "Poizvedba SQL"
@@ -2051,119 +2084,119 @@ msgstr "Poizvedba SQL"
msgid "MySQL said: "
msgstr "MySQL je vrnil: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Ne morem se povezati s preverjalnikom SQL!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Razloži stavek SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Preskoči razlago stavka SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Brez kode PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Ustvari kodo PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Osveži"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Preskoči preverjanje pravilnosti SQL stavka"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Preveri pravilnost stavka SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Urejanje te poizvedbe v vrstici"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "V vrstici"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profiliranje"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y ob %H.%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s ur, %s minut in %s sekund"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Začetek"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Prejšnji"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Konec"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Preskoči na zbirko podatkov "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2175,41 +2208,41 @@ msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s"
msgid "Structure"
msgstr "Struktura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Vstavi"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacije"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Prebrskajte svoj računalnik:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Nobene datoteke ni za naložiti"
@@ -2571,7 +2604,7 @@ msgstr "Privzet zavihek tabele"
msgid "Show binary contents as HEX by default"
msgstr "Privzeto prikaži dvojiške vsebine kot HEX"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Prikaži dvojiške vsebine kot HEX"
@@ -4601,7 +4634,7 @@ msgstr "Oblikovalnik"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegiji"
@@ -4613,7 +4646,7 @@ msgstr "Rutina"
msgid "Return type"
msgstr "Vrnjena vrsta"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4800,9 +4833,9 @@ msgstr "Nabor znakov datoteke:"
msgid "Compression:"
msgstr "Stiskanje:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Brez"
@@ -4935,37 +4968,53 @@ msgstr "Možnosti odvisne od oblike:"
msgid "Language"
msgstr "Jezik"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Obnovi vrstni red stolpcev"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Povlecite za preureditev"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Kliknite za razvrstitev"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Kliknite za označitev/opustitev"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d ni veljavna številka vrstice."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "vrstic naprej od vrstice #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "vodoravnem"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "vodoravno (zasukani naslovi)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "navpičnem"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "v %s načinu in ponovi glavo po %s celicah"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Uredi po ključu"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4978,92 +5027,92 @@ msgstr "Uredi po ključu"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Možnosti"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Delna besedila"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Polna besedila"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Relacijski ključ"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Relacijski prikazni stolpec"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Prikaži dvojiške vsebine"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Prikaži vsebine BLOB"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pretvorba z brskalnikom"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopiraj"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Vrstica je izbrisana"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Prekini proces"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "v poizvedbi"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Prikazujem vrstice"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "skupaj"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Poizvedba je potrebovala %01.4f s"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Spremeni"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Dejanja rezultatov poizvedbe"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Pogled za tiskanje (s polnimi besedili)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Prikaži grafikon"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Ustvari pogled"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Povezave ni mogoče najti"
@@ -5111,7 +5160,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Zaloga medpomnilnika"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Stanje InnoDB"
@@ -5615,7 +5664,7 @@ msgstr "Prikaži vrste MIME"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Gostitelj"
@@ -5839,7 +5888,7 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Ustvaril"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6003,7 +6052,7 @@ msgstr "Dodaj predpono tabele"
msgid "Add prefix"
msgstr "Dodaj predpono"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Brez sprememb"
@@ -6335,14 +6384,14 @@ msgid "Slave status"
msgstr "Stanje podrejenca"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Spremenljivka"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Vrednost"
@@ -6570,20 +6619,20 @@ msgid "Synchronize"
msgstr "Sinhroniziraj"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Dvojiški dnevnik"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Spremenljivke"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Nabori znakov"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Pogoni"
@@ -6628,11 +6677,11 @@ msgstr "Počisti"
msgid "Columns"
msgstr "Stolpci"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Označi to poizvedbo SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
@@ -6857,7 +6906,7 @@ msgstr "Definicija PARTITION"
msgid "+ Add a new value"
msgstr "+ Dodaj novo vrednost"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Čas"
@@ -7052,7 +7101,7 @@ msgid "Protocol version"
msgstr "Različica protokola"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Uporabnik"
@@ -7323,7 +7372,7 @@ msgstr "Agregat"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7501,17 +7550,17 @@ msgstr "Datoteka ne obstaja"
msgid "Select binary log to view"
msgstr "Izberite dvojiški dnevnik za pregled"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Skrči prikazane poizvedbe"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Pokaži celotne poizvedbe"
@@ -8040,7 +8089,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Pokaži stanje glavnega strežnika"
@@ -8190,177 +8239,158 @@ msgstr ""
"Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga "
"želite konfigurirati ?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Hitrost osveževanja"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "minutes"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "minut"
+msgstr[1] "minut"
+msgstr[2] "minut"
+msgstr[3] "minut"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "sekunda"
+msgstr[1] "sekunda"
+msgstr[2] "sekunda"
+msgstr[3] "sekunda"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Nit %s je bila prekinjena."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Upravljavec"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Predpomnilnik poizvedb"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Niti"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Začasni podatki"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Zakasnjena vstavljanja"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Predpomnilnik ključev"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Stiki"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Razvrščanje"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Koordinator transakcij"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Izplakni (zapri) vse tabele"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Pokaži odprte tabele"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Prikaži gostitelje podrejencev"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Prikaži stanje podrejencev"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Izplakni predpomnilnik poizvedb"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Podatki o izvajanju"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Izbira strežnika"
+msgstr "Promet strežnika"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Statistika poizvedb"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Oglej si tabelo stanj podrejencev"
+msgstr "Vse spremenljivke stanja"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Osveži"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekunda"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekunda"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuta"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "Ne spreminjaj gesla"
+msgstr "Vsebuje besedo:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Pokaži odprte tabele"
+msgstr "Prikaži samo opozorilne vrednosti"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtriraj po kategoriji ..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "Sorodne povezave"
+msgstr "Sorodne povezave:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "na uro"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "na minuto"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "na sekundo"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Vrsta poizvedbe"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "Št."
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Promet omrežja od zagona: %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8368,34 +8398,34 @@ msgstr ""
"Strežnik MySQL deluje kot glavni strežnik in podrejenec v "
"postopku podvojevanja ."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja ."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite "
-"razdelek o podvojevanju ."
+"razdelek o podvojevanju ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Stanje podvojevanja"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Promet"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8403,45 +8433,39 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Prejeto"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Povezave"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Največ sočasnih povezav"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Neuspeli poizkusi"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Prekinjeno"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesi"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Could not connect to MySQL server"
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Ne morem se povezati s strežnikom MySQL"
+msgstr "Število spodletelih poskusov povezave s strežnikom MySQL."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8451,18 +8475,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL."
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8474,11 +8498,11 @@ msgstr ""
"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile "
"na pomnilniku namesto na disku."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Koliko začasnih datotek je ustvaril mysqld."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8486,7 +8510,7 @@ msgstr ""
"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril "
"med izvajanjem stavkov."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8494,7 +8518,7 @@ msgstr ""
"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke "
"napake (najverjetneje podvojen ključ)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8502,23 +8526,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Število zapisanih vrstic INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Število izvedenih izjav FLUSH."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Število notranjih izjav COMMIT."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Število izbrisov vrstice iz tabele."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8528,7 +8552,7 @@ msgstr ""
"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat "
"so bile tabele odkrite."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8538,7 +8562,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:855
+#: server_status.php:864
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."
@@ -8547,7 +8571,7 @@ msgstr ""
"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno "
"indeksirane."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8557,7 +8581,7 @@ msgstr ""
"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če "
"pregledujete indeks."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8565,7 +8589,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:858
+#: server_status.php:867
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 "
@@ -8577,7 +8601,7 @@ msgstr ""
"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih "
"tabel, ali stike, ki ne uporabljajo ključev pravilno."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8589,36 +8613,36 @@ msgstr ""
"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo "
"prednosti indeksov, ki jih imate."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Število notranjih izjav ROLLBACK."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Število zahtev za posodobitev vrstice v tabeli."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Število zahtev za vstavitev vrstice v tabelo."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Število trenutno umazanih strani."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Število prostih strani."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8628,7 +8652,7 @@ msgstr ""
"trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga "
"ne morejo biti izplaknjene ali odstranjene."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8640,11 +8664,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Skupna velikost zaloge medpomnilnika, v straneh."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8652,7 +8676,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8660,11 +8684,11 @@ msgstr ""
"Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB "
"izvaja zaporedno pregledovanje celotne tabele."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8672,7 +8696,7 @@ msgstr ""
"Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge "
"medpomnilnika in je moral izvesti enostransko branje."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8686,52 +8710,52 @@ msgstr ""
"teh čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, "
"bi morala biti ta vrednost majhna."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Število dozdajšnjih posegov fsync()."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Trenutno število čakajočih posegov fsync()."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Trenutno število čakajočih branj."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Trenutno število čakajočih pisanj."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Količina do zdaj prebranih podatkov, v bajtih."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Skupno število branj podatkov."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Skupno število zapisovanj podatkov."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Količina do zdaj zapisanih podatkov, v bajtih."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8739,35 +8763,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Število zahtev pisanja v dnevnik."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Število fizičnih pisanj v dnevniško datoteko."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Število pisanj fsync() storjenih v dnevniško datoteko."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Število čakajoče dnevniške datoteke fsyncs."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Čakajoča pisanja v dnevniško datoteko."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Število bajtov zapisanih v dnevniško datoteko."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Število ustvarjenih strani."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8775,51 +8799,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Število prebranih strani."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Število zapisanih strani."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Število zaklepov vrstic, na katere se trenutno čaka."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Število čakanj na zaklepe vrstic."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Število vrstic izbrisanih iz tabel InnoDB."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Število vrstic vstavljenih v tabele InnoDB."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Število vrstic prebranih iz tabel InnoDB."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Število vrstic posodobljenih v tabelah InnoDB."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8828,7 +8852,7 @@ msgstr ""
"vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot "
"Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -8836,7 +8860,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:908
+#: server_status.php:917
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 "
@@ -8846,11 +8870,11 @@ msgstr ""
"dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli "
"naenkrat v uporabi."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8860,15 +8884,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8879,17 +8903,17 @@ msgstr ""
"enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena "
"poizvedba."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
-msgstr ""
+msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika."
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8897,38 +8921,41 @@ msgstr ""
"Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel "
"najverjetneje premajhen."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Število odprtih datotek."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Število odprtih tabel."
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Število prostih pomnilniških blokov v predpomnilniku poizvedb. Visoko "
+"število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z "
+"izvedbo stavka FLUSH QUERY CACHE."
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Količina prostega spomina za predpomnilnik poizvedb."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Število zadetkov predpomnilnika."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Število poizvedb dodanih v predpomnilnik."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8941,7 +8968,7 @@ msgstr ""
"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere "
"poizvedbe naj odstrani iz predpomnilnika."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8949,19 +8976,19 @@ msgstr ""
"Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene "
"zaradi nastavitve query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Število zabeleženih poizvedb v predpomnilniku."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Skupno število blokov v predpomnilniku poizvedb."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8969,11 +8996,11 @@ msgstr ""
"Število stikov, ki ne uporabljajo indeksov. Če ta vrednost ni 0, skrbno "
"preverite indekse vaših tabel."
-#: server_status.php:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -8981,7 +9008,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8989,16 +9016,16 @@ msgstr ""
"Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni "
"kritično, četudi je veliko.)"
-#: server_status.php:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9006,11 +9033,11 @@ msgstr ""
"Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti "
"SQL podrejenca."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9018,12 +9045,12 @@ msgstr ""
"Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time "
"sekund."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9033,23 +9060,23 @@ msgstr ""
"Če je ta vrednost velika, razmislite o povečanju sistemske spremenljivke "
"sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Število razvrščanj, ki so bila storjena z razponi."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Število razvrščenih vrstic."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Koliko krat je bil zaklep tabele pridobljen takoj."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9061,7 +9088,7 @@ msgstr ""
"optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele "
"ali uporabite podvojevanje."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9071,11 +9098,11 @@ msgstr ""
"izračuna kot Threads_created/Connections. Če je ta vrednost rdeča, povečajte "
"vaš thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Število trenutno odprtih povezav."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9086,7 +9113,7 @@ 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:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Število niti, ki ne spijo."
@@ -9210,7 +9237,7 @@ msgstr "Spremenljivke in nastavitve strežnika"
msgid "Session value"
msgstr "Vrednost seje"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Skupna vrednost"
@@ -9532,39 +9559,39 @@ msgstr "Ključ je prekratek, ima naj vsaj 8 znakov."
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Prebrskaj tuje vrednosti"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Id vstavljene vrstice: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Prikazovanje kot koda PHP"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Prikazovanje poizvedbe SQL"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Preverjen SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Težave z indeksi tabele `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Oznaka"
@@ -9646,10 +9673,8 @@ msgid "Line"
msgstr "Črtni"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "V vrstici"
+msgstr "Zlepek"
#: tbl_chart.php:89
msgid "Pie"
@@ -9660,50 +9685,36 @@ msgid "Stacked"
msgstr "Zloženi"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Naslov poročila:"
+msgstr "Naslov grafikona"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "Os x:"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "Poizvedbe SQL"
+msgstr "Serije:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Stolpcev besedilnega polja"
+msgstr "Preostali stolpci"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "Oznaka osi X"
+msgstr "Oznaka osi x:"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Vrednost"
+msgstr "Vrednosti x"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "Oznaka osi Y"
+msgstr "Oznaka osi y:"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Vrednost"
+msgstr "Vrednosti y"
#: tbl_create.php:56
#, php-format
@@ -9941,23 +9952,23 @@ msgstr "Omejitev tujih ključev"
msgid "No rows selected"
msgstr "Ni izbranih vrstic"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Izberite stolpce (vsaj enega):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Število vrstic na stran"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Vrstni red prikaza:"
@@ -10239,6 +10250,12 @@ msgstr "Ime VIEW"
msgid "Rename view to"
msgstr "Preimenuj pogled v"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Slog"
+
+#~ msgid "seconds"
+#~ msgstr "sekund"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Primerjava trajanj izvajanja poizvedb (v mikrosekundah)"
diff --git a/po/sq.po b/po/sq.po
index 865d3bf9f6..a8fcd471fc 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: albanian \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Shfaqi të gjithë"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të "
"ndalojnë përditësimet nëpërmjet dritareve."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Kërko"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Kërko"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,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:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Përshkrimi"
@@ -135,7 +135,7 @@ msgstr "Komentet e tabelës"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -150,7 +150,7 @@ msgstr "Emrat e kollonave"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Lloji"
@@ -166,7 +166,7 @@ msgstr "Lloji"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Lidhje me"
msgid "Comments"
msgstr "Komente"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Komente"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr " Jo "
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr " Jo "
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Shfaq dump (skema) e databazës"
msgid "No tables found in database."
msgstr "Nuk gjenden tabela në databazë."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Zgjidh gjithçka"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Asnjë zgjedhje"
@@ -271,7 +271,7 @@ msgstr "Databaza %s është kopjuar tek %s"
msgid "Rename database to"
msgstr "Ndysho emrin e databazës në"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Komanda"
@@ -335,7 +335,7 @@ msgstr "Kalo tek databaza e kopjuar"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -365,7 +365,7 @@ msgstr "Skema relacionale"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabela"
@@ -381,7 +381,7 @@ msgstr "rreshta"
msgid "Size"
msgstr "Madhësia"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "në përdorim"
@@ -407,7 +407,7 @@ msgstr "Ndryshimi i fundit"
msgid "Last check"
msgstr "Kontrolli i fundit"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -428,25 +428,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Renditja"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Në ngjitje"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Në zbritje"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Shfaq"
@@ -469,7 +469,7 @@ msgstr "Fshi"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ose"
@@ -502,39 +502,39 @@ msgstr "Përdor tabelat"
msgid "SQL query on database %s :"
msgstr "Kërkesë SQL tek databaza %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Dërgo Query"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ndalohet hyrja"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "të paktën një prej fjalëve"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "të gjitha fjalët"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "frazën e saktë"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "si shprehje e rregullt"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Rezultatet e kërkimit për \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -542,20 +542,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "%s korrispondon(jnë) tek tabela %s "
msgstr[1] "%s korrispondon(jnë) tek tabela %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Shfleto"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Dump i të dhënave për tabelën"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -566,7 +566,7 @@ msgstr "Dump i të dhënave për tabelën"
msgid "Delete"
msgstr "Fshi"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -574,173 +574,173 @@ msgid_plural "Total: %s matches"
msgstr[0] "Gjithsej: %s korrispondues(ë)"
msgstr[1] "Gjithsej: %s korrispondues(ë)"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Kërko në databazë"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Gjej:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Fjalët veçohen me anë të një hapësirë bosh (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Tek tabela(at):"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Tek fusha:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Nuk gjenden tabela në databazë."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s u zbraz"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Paraqitja %s u eleminua"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s u eleminua"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Gjurmimi është aktiv."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Gjurmimi nuk është aktiv."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Paraqitje"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikimi"
-#: db_structure.php:448
+#: db_structure.php:449
#, fuzzy
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "N.q.s. të zgjedhur:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Zgjidh gjithçka"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Asnjë zgjedhje"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Zgjidh të mbingarkuarit"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksporto"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Shfaq për printim"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Zbraz"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Elemino"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Kontrollo tabelën"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizo tabelën"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Riparo tabelën"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizo tabelën"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Zëvendëso të dhënat e tabelës me file"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Zëvendëso të dhënat e tabelës me file"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
#, fuzzy
msgid "Data Dictionary"
msgstr "Data Dictionary"
@@ -756,9 +756,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Databazat"
@@ -775,8 +775,8 @@ msgstr "Krijo"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Gjendja"
@@ -916,7 +916,7 @@ msgstr "Libërshënuesi u fshi."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -939,7 +939,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -965,15 +965,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Komandat \"DROP DATABASE\" nuk janë aktive."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Konfermo: "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Jeni duke SHKATËRRUAR një databazë komplete!"
@@ -1076,181 +1076,223 @@ msgstr "Heq përdoruesit e zgjedhur"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Zgjedhja e serverit"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "query SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Gjithsej"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr "."
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Lokal"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Proceset"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Ndysho emrin e databazës në"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Ndysho emrin e databazës në"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Kopjo databazën në"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Familje gërmash"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Krijo një faqe të re"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Përdor tabelat"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Kërko"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "query SQL"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "query SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Shfleto"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Në fshirje e sipër të %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "query SQL"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "query SQL"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ndrysho"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Zgjedhja e serverit"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "query SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Gjithsej"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr "."
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Zgjedhja e serverit"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Proceset"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Lidhje"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "query SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Statistikat e rreshtave"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Lokal"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Proceset"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Ndysho emrin e databazës në"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Ndysho emrin e databazës në"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Kopjo databazën në"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Familje gërmash"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Krijo një faqe të re"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Përdor tabelat"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Kërko"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "query SQL"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "query SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Shfleto"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Në fshirje e sipër të %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "query SQL"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "query SQL"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1258,78 +1300,78 @@ msgstr "Ndrysho"
msgid "Save"
msgstr "Ruaj"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "query SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "query SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Shpërfill"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Gjeneruar nga"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Hën"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1337,128 +1379,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Asnjë databazë"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Asnjë lloj"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Paraardhësi"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Në vazhdim"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gjithsej"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Pri"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Maj"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Qer"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Kor"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Gsh"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Tet"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Shk"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Pri"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1466,176 +1508,176 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Qer"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Kor"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Gsh"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sht"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Tet"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nën"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dhj"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Djl"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Hën"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pre"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Djl"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Hën"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Mër"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Enj"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pre"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sht"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Djl"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Hën"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mër"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Enj"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pre"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sht"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "në përdorim"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1727,7 +1769,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databazat"
@@ -1794,25 +1836,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabela %s u riemërtua %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1844,10 +1886,9 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Stili"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1855,7 +1896,6 @@ msgstr "E pamundur lidhja: rregullime të pavlefshme."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Mirësevini tek %s"
@@ -2004,7 +2044,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabela"
@@ -2091,7 +2131,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Serveri"
@@ -2139,7 +2178,7 @@ msgid "Documentation"
msgstr "Dokumentet"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "query SQL"
@@ -2147,119 +2186,119 @@ msgstr "query SQL"
msgid "MySQL said: "
msgstr "Mesazh nga MySQL: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Shpjego SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Mos shpjego SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "pa kod PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Krijo kodin PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Rifresko"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Mos vleftëso SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Vleftëso SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Fillim"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Paraardhësi"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Fund"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Kalo tek databaza "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2271,42 +2310,42 @@ msgstr ""
msgid "Structure"
msgstr "Struktura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Shto"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacione"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "directory e upload të server-it web"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2665,7 +2704,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4632,7 +4671,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Të drejtat"
@@ -4644,7 +4683,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4847,9 +4886,9 @@ msgstr "Familja gërmave të file:"
msgid "Compression:"
msgstr "Kompresim"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Asnjë lloj"
@@ -4984,39 +5023,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Shto/Fshi kollonat e fushës"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "rreshta duke filluar nga"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr " horizontal "
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontal (headers të rrotulluar)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr " vertikal "
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr " në modalitetin %s dhe përsërit headers mbas %s qelish "
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Rendit sipas kyçit"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5029,103 +5086,103 @@ msgstr "Rendit sipas kyçit"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Operacione"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Tekst i pjesëshëm"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Teksti i plotë"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Skema relacionale"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Skema relacionale"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformimi i Shfletuesit"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "rreshti u fshi"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Hiq"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "tek query"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Shfaqja e regjistrimeve "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "Gjithsej"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query ka zgjatur %01.4f sec"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ndrysho"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Shfaq për printim (me full text)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Shfaq skemën PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Versioni i MySQL"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Lidhja nuk u gjet"
@@ -5171,7 +5228,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Gjëndja InnoDB"
@@ -5639,7 +5696,7 @@ msgstr "Lloje MIME në dispozicion"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5851,7 +5908,7 @@ msgstr "Rezultati SQL"
msgid "Generated by"
msgstr "Gjeneruar nga"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6009,7 +6066,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Asnjë ndryshim"
@@ -6338,14 +6395,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "E ndryshueshme"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Vlerë"
@@ -6586,21 +6643,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr "Binar"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Të ndryshueshmet"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Familje gërmash"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6650,11 +6707,11 @@ msgstr "Kalendari"
msgid "Columns"
msgstr "Emrat e kollonave"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Shtoja të preferuarve këtë query SQL"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
@@ -6893,7 +6950,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Shto një përdorues të ri"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Koha"
@@ -7115,7 +7172,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Përdorues"
@@ -7387,7 +7444,7 @@ msgstr "Krijo"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7577,18 +7634,18 @@ msgstr "Tabela \"%s\" nuk ekziston!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Fusha"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Shkurton (ndërpret) Queries e Shfaqura"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Shfaq të gjitha kërkesat"
@@ -8129,7 +8186,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8268,12 +8325,34 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Rifresko"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "në përdorim"
+msgstr[1] "në përdorim"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "në sekondë"
+msgstr[1] "në sekondë"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s u përfundua me sukses."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -8281,255 +8360,217 @@ msgstr ""
"phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë "
"përfunduar më parë."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
#, fuzzy
msgid "Query cache"
msgstr "Lloji i query"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
#, fuzzy
msgid "Delayed inserts"
msgstr "Përdor shtimet me vonesë"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
#, fuzzy
msgid "Show open tables"
msgstr "Shfaq tabelat"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Informacione mbi Runtime"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Zgjedhja e serverit"
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Statistikat e rreshtave"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Rifresko"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "në sekondë"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "në sekondë"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "në përdorim"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Mos ndrysho fjalëkalim"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "Shfaq tabelat"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacione"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "në orë"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "në minutë"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "në sekondë"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Lloji i query"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ky server MySQL po punon që prej %s. U nis më %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafiku"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Marrë"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Dërguar"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Lidhje"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Përpjekje të dështuara"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Dështoi"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Proceset"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8537,78 +8578,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8616,7 +8657,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8624,42 +8665,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8667,33 +8708,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8702,227 +8743,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8930,99 +8971,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9030,18 +9071,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9049,7 +9090,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9172,7 +9213,7 @@ msgstr "Të ndryshueshmet dhe parametrat e Serverit"
msgid "Session value"
msgstr "Vlera seancës"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Vlerë Globale"
@@ -9450,41 +9491,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Shfleto opcionet e huaja"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Vleftëso SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiketë"
@@ -9869,25 +9910,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Nuk ka rreshta të zgjedhur"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Zgjidh fushat (të paktën një):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "regjistrime për faqe"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Mënyra e shfaqjes:"
@@ -10185,6 +10226,14 @@ msgstr ""
msgid "Rename view to"
msgstr "Riemërto tabelën në"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Stili"
+
+#, fuzzy
+#~| msgid "per second"
+#~ msgid "seconds"
+#~ msgstr "në sekondë"
+
#, fuzzy
#~| msgid "SQL result"
#~ msgid "Query results"
diff --git a/po/sr.po b/po/sr.po
index 0ae31efb61..d845058d47 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: serbian_cyrillic \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Прикажи све"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"затворили матични прозор, или ваш претраживач онемогућава ажурирање међу "
"прозорима због сигурносних подешавања"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Претраживање"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Претраживање"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Име кључа"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Опис"
@@ -136,7 +136,7 @@ msgstr "Коментари табеле"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Колона"
@@ -149,7 +149,7 @@ msgstr "Колона"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -165,7 +165,7 @@ msgstr "Тип"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +194,7 @@ msgstr "Везе ка"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +205,12 @@ msgstr "Коментари"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +225,7 @@ msgstr "Не"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +244,11 @@ msgstr "Прикажи садржај (схему) базе"
msgid "No tables found in database."
msgstr "Табеле нису пронађене у бази."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Изабери све"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "ништа"
@@ -270,7 +270,7 @@ msgstr "База %s је прекопирана у %s"
msgid "Rename database to"
msgstr "Преименуј базу у"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Наредба"
@@ -331,7 +331,7 @@ msgstr "Пребаци се на копирану базу"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -359,7 +359,7 @@ msgstr "Уреди или извези релациону схему"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Табела"
@@ -375,7 +375,7 @@ msgstr "Редова"
msgid "Size"
msgstr "Величина"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "се користи"
@@ -401,7 +401,7 @@ msgstr "Последња измена"
msgid "Last check"
msgstr "Последња провера"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -423,25 +423,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Сортирање"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Растући"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Опадајући"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Прикажи"
@@ -464,7 +464,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "или"
@@ -497,39 +497,39 @@ msgstr "Користи табеле"
msgid "SQL query on database %s :"
msgstr "SQL упит на бази %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Изврши SQL упит"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Приступ одбијен"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "бар једну од речи"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "све речи"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "тачан израз"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "као регуларни израз"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Резултати претраге за \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -538,20 +538,20 @@ msgstr[0] "%s погодака унутар табеле %s "
msgstr[1] "%s погодака унутар табеле %s "
msgstr[2] "%s погодака унутар табеле %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Преглед"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Приказ података табеле"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -562,7 +562,7 @@ msgstr "Приказ података табеле"
msgid "Delete"
msgstr "Обриши"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -571,173 +571,173 @@ msgstr[0] "Укупно: %s погодака"
msgstr[1] "Укупно: %s погодака"
msgstr[2] "Укупно: %s погодака"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Претраживање базе"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Речи или вредности које се траже (џокер: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Тражи:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Речи се одвајају размаком (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Унутар табела:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Унутар табела:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Табеле нису пронађене у бази."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Табела %s је испражњена"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Поглед %s је одбачен"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Табела %s је одбачена"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Поглед"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Репликација"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Укупно"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s је подразумевани погон складиштења на овом MySQL серверу."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Означено:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Означи све"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "ниједно"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Провери табеле које имају прекорачења"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Извоз"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "За штампу"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Испразни"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Одбаци"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Провери табелу"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Оптимизуј табелу"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Поправи табелу"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Анализирај табелу"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "База не постоји"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Замени податке у табели са подацима из датотеке"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Замени податке у табели са подацима из датотеке"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Речник података"
@@ -753,9 +753,9 @@ msgstr "Провери табелу"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "База података"
@@ -773,8 +773,8 @@ msgstr "Направи"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Статус"
@@ -922,7 +922,7 @@ msgstr "Обележивач је управо обрисан."
msgid "Showing bookmark"
msgstr "Приказивање маркера"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Направљен маркер %s"
@@ -950,7 +950,7 @@ msgstr ""
"повећате временска ограничења у PHP-у"
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -976,15 +976,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" команда је онемогућена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Да ли стварно хоћете да "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Овим ћете УНИШТИТИ комплетну базу података!"
@@ -1088,184 +1088,226 @@ msgstr "Уклони изабране кориснике"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Избор сервера"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL упит"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Укупно"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Локални"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Процеси"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Преименуј базу у"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Преименуј базу у"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Копирај базу у"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Карактер сет"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "Табела мора имати барем једно поље."
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Направи табелу"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Користи табеле"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Претраживање"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL упит"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL упит"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Преглед"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Бришем %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL упит"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL упит"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Складиштења"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Избор сервера"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL упит"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Укупно"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Избор сервера"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Процеси"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Конекције"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL упит"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Статистике реда"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Локални"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Процеси"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Преименуј базу у"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Преименуј базу у"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Копирај базу у"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Карактер сет"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "Table must have at least one field."
+msgid "Table must have at least one column"
+msgstr "Табела мора имати барем једно поље."
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Направи табелу"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Користи табеле"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Претраживање"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL упит"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL упит"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Преглед"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Бришем %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL упит"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL упит"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Складиштења"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1273,77 +1315,77 @@ msgstr "Промени"
msgid "Save"
msgstr "Сачувај"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Сакриј"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL упит"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнориши"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Изаберите референцирани кључ"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Изабери страни кључ"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Молимо изаберите примарни или јединствени кључ"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Изабери поља за приказ"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Направи лозинку"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Направи"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промени лозинку"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1351,128 +1393,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Направи релацију"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "База не постоји"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "Подаци"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Следећи"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Укупно"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарни"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "мај"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1480,176 +1522,176 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "дец"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Уто"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Уто"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Уто"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1745,7 +1787,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Базе"
@@ -1815,25 +1857,25 @@ msgstr "%s је онемогућен на овом MySQL серверу."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Овај MySQL сервер не подржава %s погон складиштења."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Неисправна база података"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Неисправан назив табеле"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Грешка при преименовању табеле %1$s у %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Табели %s промењено име у %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1865,10 +1907,9 @@ msgstr "Није пронађена тема %s!"
msgid "Theme path not found for theme %s!"
msgstr "Није пронађена путања до теме за тему %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Тема / стил"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1876,7 +1917,6 @@ msgstr "Не могу да се повежем: неисправна подеш
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Добродошли на %s"
@@ -2027,7 +2067,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Табеле"
@@ -2116,7 +2156,6 @@ msgstr "Неисправан назив сервера %1$s. Молимо про
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сервер"
@@ -2164,7 +2203,7 @@ msgid "Documentation"
msgstr "Документација"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL упит"
@@ -2172,121 +2211,121 @@ msgstr "SQL упит"
msgid "MySQL said: "
msgstr "MySQL рече: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Објасни SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Прескочи објашњавање SQL-a"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "без PHP кода"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Освежи"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Прескочи проверу SQL-a"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Провери SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Складиштења"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Профилисање"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "бајтова"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "КБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "ТБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "ПБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "ЕБ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. у %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дана, %s сати, %s минута и %s секунди"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Почетак"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Пређи на базу "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ова функционалност %s је погођена познатом грешком, видите %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2298,42 +2337,42 @@ msgstr "Ова функционалност %s је погођена позна
msgid "Structure"
msgstr "Структура"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Нови запис"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Операције"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "директоријум за слање веб сервера "
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Директоријум који сте изабрали за слање није доступан"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2692,7 +2731,7 @@ msgstr "Преименуј базу у"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4688,7 +4727,7 @@ msgstr "Дизајнер"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Привилегије"
@@ -4700,7 +4739,7 @@ msgstr "Рутине"
msgid "Return type"
msgstr "Повратни тип"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4916,9 +4955,9 @@ msgstr "Карактер сет датотеке:"
msgid "Compression:"
msgstr "Компресија"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "нема"
@@ -5068,39 +5107,57 @@ msgstr ""
msgid "Language"
msgstr "Језик"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Додај/обриши колону"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d није исправан број реда."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr " редова почев од реда"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "хоризонталном"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "хоризонталном (ротирана заглавља)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "вертикалном"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "у %s моду и понови заглавље после сваког %s реда"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Сортирај по кључу"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5113,102 +5170,102 @@ msgstr "Сортирај по кључу"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Опције"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Део текста"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Пун текст"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Релациона схема"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Релациона схема"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Транформације читача"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Копирај"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Ред је обрисан"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Обустави"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "у упиту"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Приказ записа"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "укупно"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Упит је трајао %01.4f секунди"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Промени"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Операције на резултатима упита"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Поглед за штампу (са пуним текстом)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Прикажи PDF схему"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Направи релацију"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Веза није пронађена"
@@ -5257,7 +5314,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Скуп прихватника"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -5744,7 +5801,7 @@ msgstr "Доступни MIME-типови"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Домаћин"
@@ -5954,7 +6011,7 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерисао"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL је вратио празан резултат (нула редова)."
@@ -6118,7 +6175,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Додај ново поље"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Нема измена"
@@ -6448,14 +6505,14 @@ msgid "Slave status"
msgstr "Прикажи статус подређених сервера"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Променљива"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Вредност"
@@ -6695,20 +6752,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Бинарни дневник"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Променљиве"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Кодне стране"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Складиштења"
@@ -6758,11 +6815,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имена колона"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Запамти SQL-упит"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
@@ -6998,7 +7055,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Додај новог корисника"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Време"
@@ -7237,7 +7294,7 @@ msgid "Protocol version"
msgstr "Верзија протокола"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Корисник"
@@ -7516,7 +7573,7 @@ msgstr "Направи"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Оператор"
@@ -7714,17 +7771,17 @@ msgstr "Табела \"%s\" не постоји!"
msgid "Select binary log to view"
msgstr "Изаберите бинарни дневник за преглед"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Датотеке"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Прикажи скраћене упите"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Прикажи комплетне упите"
@@ -8252,7 +8309,7 @@ msgstr "Привилегије су успешно поново учитане."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Прикажи статус подређених сервера"
@@ -8393,205 +8450,195 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Процес %s је успешно прекинут."
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен."
-
-#: server_status.php:230
-msgid "Handler"
-msgstr "Руковалац"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Кеш упита"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Нити"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Привремени подаци"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Одложена уметања"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Кеш кључева"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Спојеви"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Сортирање"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Координатор трансакција"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Очисти (затвори) све табеле"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Прикажи отворене табеле"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Прикажи подређене сервер"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Прикажи статус подређених сервера"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Очисти кеш упита"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Информације о току рада"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Избор сервера"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Статистике реда"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Освежи"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "у секунди"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "у секунди"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "се користи"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "се користи"
+msgstr[1] "се користи"
+msgstr[2] "се користи"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "у секунди"
+msgstr[1] "у секунди"
+msgstr[2] "у секунди"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Процес %s је успешно прекинут."
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен."
+
+#: server_status.php:263
+msgid "Handler"
+msgstr "Руковалац"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Кеш упита"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Нити"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Привремени подаци"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Одложена уметања"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Кеш кључева"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Спојеви"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Сортирање"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Координатор трансакција"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Очисти (затвори) све табеле"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Прикажи отворене табеле"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Прикажи подређене сервер"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Прикажи статус подређених сервера"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Очисти кеш упита"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Информације о току рада"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Избор сервера"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Немој да мењаш лозинку"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Прикажи отворене табеле"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Релације"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "на сат"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "у минуту"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "у секунди"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Врста упита"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Овај MySQL сервер ради већ %s. Покренут је %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Репликација"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Саобраћај"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8599,45 +8646,41 @@ msgstr ""
"На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да "
"те статистике, онако како их пријављује MySQL сервер, могу бити нетачне."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Примљено"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Послато"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Конекције"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "макс. истовремених веза"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Неуспелих покушаја"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Прекинуто"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Процеси"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8647,16 +8690,16 @@ msgstr ""
"превазишле вредност у binlog_cache_size и користиле привремену датотеку да "
"сместе изразе из трансакције."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Број трансакција које су користиле кеш привременог бинарног дневника."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8668,11 +8711,11 @@ msgstr ""
"повећате вредност tmp_table_size како би учинили да привремене табеле буду "
"базиране у меморији уместо на диску."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Колико привремених датотека је mysqld направио."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8680,7 +8723,7 @@ msgstr ""
"Број привремених табела које је сервер аутоматски креирао у меморији док је "
"извршавао изразе."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8688,7 +8731,7 @@ msgstr ""
"Број редова уписаних са INSERT DELAYED за које је јављена нека грешка "
"(вероватно дуплирани кључ)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8696,23 +8739,23 @@ msgstr ""
"Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над "
"којом се користи INSERT DELAYED добија своју нит."
-#: server_status.php:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Број уписаних INSERT DELAYED редова."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Број извршених FLUSH израза."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Број интерних COMMIT израза."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Број брисања неког реда табеле."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8722,7 +8765,7 @@ msgstr ""
"одређеног имена. То се назива откривањем (discovery). Handler_discover "
"означава број пута када је откривена табела."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8732,7 +8775,7 @@ msgstr ""
"може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT "
"кол1 FROM нешто, под претпоставком да је кол1 индексирано."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -8740,7 +8783,7 @@ msgstr ""
"Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то "
"је добар показатељ да су ваши упити и табеле прописно индексирани."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8750,7 +8793,7 @@ msgstr ""
"када радите упит по колони индекса са ограничењем опсега или ако радите "
"скенирање индекса."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8758,7 +8801,7 @@ msgstr ""
"Број захтева за читањем претходног реда у поретку кључева. Ова метода читања "
"се углавном користи за оптимизацију ORDER BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8770,7 +8813,7 @@ msgstr ""
"много упита који захтевају да MySQL скенира целе табеле или имате спојеве "
"који не користе кључеве прописно."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8782,35 +8825,35 @@ msgstr ""
"прописно индексиране или да ваши упити нису написани да искористе већ "
"постојеће индексе."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Број интерних ROLLBACK израза."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Број захтева за ажурирање реда у табели."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Број захтева за уписивање реда у табелу."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Број страна које садрже податке (чистих или прљавих)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Број страна које су тренутно прљаве."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Број страна у остави бафера за које је тражено да буду очишћене."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Број слободних страна."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8820,7 +8863,7 @@ msgstr ""
"чита или се у њих уписује или из неког другог разлога не могу бити очишћене "
"нити уклоњене."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8832,11 +8875,11 @@ msgstr ""
"такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Пуна величина оставе бафера, у странама."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8844,7 +8887,7 @@ msgstr ""
"Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када "
"упит треба да скенира велики део табеле али насумичним редоследом."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8852,11 +8895,11 @@ msgstr ""
"Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када "
"InnoDB ради секвенцијално скенирање целе табеле."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Број логичких захтева за читање које је InnoDB урадио."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8864,7 +8907,7 @@ msgstr ""
"Број логичких читања која InnoDB није могао да задовољи из оставе бафера те "
"је морао да ради читање појединачне стране."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8878,55 +8921,55 @@ msgstr ""
"дешавања ових чекања. Ако је величина оставе бафера постављена како треба, "
"ова вредност ви требало да је ниска."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Број уписа учињених у InnoDB оставу бафера."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Број fsync() операција до сада."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Тренутни број fsync() операција на чекању."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Тренутни број читања на чекању."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Тренутни број уписа на чекању."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Количина података прочитаних до сада, у бајтовима."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Укупан број читања података."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Укупан број уписа података."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Количина података уписаних до сада, у бајтовима"
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
"у ову сврху."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
"у ову сврху."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8934,35 +8977,35 @@ msgstr ""
"Број чекања која смо имали зато што је бафер дневника био премали те смо "
"морали да сачекамо да буде очишћен пре наставка."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Број захтева за упис у дневник."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Број физичких уписа у датотеку дневника."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Број fsyncs уписа начињених у датотеку дневника."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Број fsync-ова за датотеку дневника на чекању."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Број уписа у датотеку дневника на чекању."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Број бајтова уписаних у датотеку дневника."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Број направљених страна."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8971,51 +9014,51 @@ msgstr ""
"вредности се рачунају у странама; величина стране омогућава да се оне лако "
"конвертују у бајтове."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Број прочитаних страна."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Број записаних страна."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Број брава за редове које се тренутно чекају."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Просечно време за добављање браве за ред, у милисекундама."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Најдуже време за добављање браве за ред, у милисекундама."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Број пута када се морала чекати брава за ред."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Број редова обрисаних из InnoDB табела."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Број редова уметнутих у InnoDB табеле."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Број редова прочитаних из InnoDB табела."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Број редова ажурираних у InnoDB табелама."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9023,7 +9066,7 @@ msgstr ""
"Број блокова кључева у кешу кључева који су измењени али још нису послати на "
"диск. Ово је раније било познато као Not_flushed_key_blocks."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -9031,7 +9074,7 @@ msgstr ""
"Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите "
"да утврдите колики део кеша кључева је у употреби."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -9041,11 +9084,11 @@ msgstr ""
"водостаја“ која показује највећи икада број блокова који је био у употреби у "
"исто време."
-#: server_status.php:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "Број захтева за читање блока кључева из кеша."
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -9055,15 +9098,15 @@ msgstr ""
"је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша "
"се може израчунати као Key_reads/Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "Број захтева за уписивање блока кључева у кеш."
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Број физичких уписа блока кључева на диск."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -9073,17 +9116,17 @@ msgstr ""
"упита. Корисно за упоређивање цене различитих планова упита за исти упит. "
"Подразумевана вредност 0 значи да још није био компајлиран ниједан упит."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање."
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9091,39 +9134,39 @@ msgstr ""
"Број табела које су биле отваране. Ако је број велики, ваш кеш табела је "
"вероватно премали."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Број отворених датотека."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Број отворених токова (користи се првенствено за вођење дневника (logging))."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Број отворених табела."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Количина слободне меморије за кеш упита."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Број погодака из кеша."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Број упита додатих у кеш."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9135,7 +9178,7 @@ msgstr ""
"упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least "
"recently used , LRU) да би одлучио које упите да уклони из кеша."
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9143,19 +9186,19 @@ msgstr ""
"Број некешираних упита (који се не могу кеширати или нису кеширани због "
"подешавања query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Број упита регистрованих у кешу."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Укупан број блокова у кешу за упите."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Статус репликације отпорне на грешке (није још имплементирано)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9163,11 +9206,11 @@ msgstr ""
"Број спојева који не користе индексте. Ако ова вредност није 0, требало би "
"пажљиво да проверите индексе ваших табела."
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr "Број спојева који су користили претрагу опсега на референтној табели."
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -9175,7 +9218,7 @@ msgstr ""
"Број спојева без кључева који проверавају употребу кључа после сваког реда. "
"(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9183,15 +9226,15 @@ msgstr ""
"Број спојева који су користили опсеге на првој табели. (Обично није критично "
"чак ни када је ово велико)"
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr "Број спојева који су урадили пуно скенирање прве табеле."
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити."
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9199,11 +9242,11 @@ msgstr ""
"Укупан број пута (од покретања) када је помоћна SQL нит за репликацију "
"покушала трансакције."
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни."
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9211,12 +9254,12 @@ msgstr ""
"Број нити за које је требало више од slow_launch_time секудни да би биле "
"покренуте."
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Број упита за које је требало више од long_query_time секудни."
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -9226,23 +9269,23 @@ msgstr ""
"је ова вредност велика, требало би да размислите о повећању вредности "
"системске променљиве sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Број сортирања која су урађена са опсегом."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Број сортираних редова."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "Број сортирања до којих је дошло скенирањем табеле."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Број пута када је брава за табелу одмах добављена."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9254,7 +9297,7 @@ msgstr ""
"би требало да оптимизујете своје упите а потом да или поделите табелу или "
"табеле или да користите репликацију."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9264,11 +9307,11 @@ msgstr ""
"Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате "
"ваш thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Број тренутно отворених веза."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9280,7 +9323,7 @@ msgstr ""
"имплементацију нити, ово обично не доноси приметна побољшања у "
"перформансама.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Број нити које нису успаване."
@@ -9405,7 +9448,7 @@ msgstr "Серверске променљиве и подешавања"
msgid "Session value"
msgstr "Вредност сесије"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Глобална вредност"
@@ -9684,41 +9727,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Прегледај стране вредности"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Приказ као PHP код"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Приказ као SQL упит"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирању табеле `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Назив"
@@ -10107,25 +10150,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Нема одабраних редова"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Направи \"упит по примеру\" (џокер: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Изабери поља (најмање једно)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Додај услове претраживања (део \"WHERE\" упита):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Број редова по страни"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Редослед приказа:"
@@ -10426,8 +10469,12 @@ msgstr "назив за VIEW"
msgid "Rename view to"
msgstr "Промени име табеле у "
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Тема / стил"
+
+#~ msgid "seconds"
+#~ msgstr "у секунди"
+
#~ msgid "Query results"
#~ msgstr "Операције на резултатима упита"
@@ -10441,8 +10488,6 @@ msgstr "Промени име табеле у "
#~ msgid "Show processes"
#~ msgstr "Прикажи листу процеса"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Поништи"
@@ -10461,31 +10506,20 @@ msgstr "Промени име табеле у "
#~ "Статистике упита : %s упита је постављено серверу од његовог "
#~ "покретања."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Привилегије су успешно поново учитане."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Може бити приближно. Видите FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Врста упита"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Додај новог корисника"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Направи релацију"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index c64c7fe553..0691f630b4 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic \n"
"Language-Team: serbian_latin \n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među "
"prozorima zbog sigurnosnih podešavanja"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Pretraživanje"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Pretraživanje"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Ime ključa"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Opis"
@@ -138,7 +138,7 @@ msgstr "Komentari tabele"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolona"
@@ -151,7 +151,7 @@ msgstr "Kolona"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -167,7 +167,7 @@ msgstr "Tip"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "Komentari"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "Ne"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "Prikaži sadržaj (shemu) baze"
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Izaberi sve"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "ništa"
@@ -272,7 +272,7 @@ msgstr "Baza %s je prekopirana u %s"
msgid "Rename database to"
msgstr "Preimenuj bazu u"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Naredba"
@@ -333,7 +333,7 @@ msgstr "Prebaci se na kopiranu bazu"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -361,7 +361,7 @@ msgstr "Uredi ili izvezi relacionu shemu"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabela"
@@ -377,7 +377,7 @@ msgstr "Redova"
msgid "Size"
msgstr "Veličina"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "se koristi"
@@ -403,7 +403,7 @@ msgstr "Poslednja izmena"
msgid "Last check"
msgstr "Poslednja provera"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -424,25 +424,25 @@ msgid "visual builder"
msgstr "vizuelni kreator"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sortiranje"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Rastući"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Opadajući"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Prikaži"
@@ -465,7 +465,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "ili"
@@ -494,39 +494,39 @@ msgstr "Koristi tabele"
msgid "SQL query on database %s :"
msgstr "SQL upit na bazi %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Pristup odbijen"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "bar jednu od reči"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "sve reči"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "tačan izraz"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "kao regularni izraz"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Rezultati pretrage za \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -535,20 +535,20 @@ msgstr[0] "%s pogodaka unutar tabele %s "
msgstr[1] "%s pogodaka unutar tabele %s "
msgstr[2] "%s pogodaka unutar tabele %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Pregled"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Prikaz podataka tabele"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -559,7 +559,7 @@ msgstr "Prikaz podataka tabele"
msgid "Delete"
msgstr "Obriši"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -567,171 +567,171 @@ msgstr[0] "Ukupno: %s pogodaka"
msgstr[1] "Ukupno: %s pogodak"
msgstr[2] "Ukupno: %s pogodaka"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Pretraživanje baze"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Traži:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Reči se odvajaju razmakom (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Unutar tabela:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Unutar kolone::"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Tabele nisu pronađene u bazi."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s je ispražnjena"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Pogled %s je odbačen"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s je odbačena"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Praćenje je aktivno."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Praćenje nije aktivno."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Pogled"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikacija"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Ukupno"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "nijedno"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Proveri tabele koje imaju prekoračenja"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Za štampu"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Odbaci"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Proveri tabelu"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimizuj tabelu"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Popravi tabelu"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analiziraj tabelu"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "Baza ne postoji"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Zameni podatke u tabeli sa podacima iz datoteke"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Zameni podatke u tabeli sa podacima iz datoteke"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Rečnik podataka"
@@ -747,9 +747,9 @@ msgstr "Proveri tabelu"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Baza podataka"
@@ -767,8 +767,8 @@ msgstr "Napravi"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -916,7 +916,7 @@ msgstr "Obeleživač je upravo obrisan."
msgid "Showing bookmark"
msgstr "Prikazivanje markera"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Napravljen marker %s"
@@ -944,7 +944,7 @@ msgstr ""
"povećate vremenska ograničenja u PHP-u"
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -970,15 +970,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!"
@@ -1082,184 +1082,226 @@ msgstr "Ukloni izabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Izbor servera"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL upit"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Ukupno"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Lokalni"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Procesi"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Preimenuj bazu u"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Remove database"
-msgid "Reload Database"
-msgstr "Ukloni bazu"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Kopiraj bazu u"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Karakter set"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Napravi tabelu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Koristi tabele"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Pretraživanje"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL upit"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL upit"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Pregled"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Brišem %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL upit"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL upit"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Skladištenja"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Izbor servera"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL upit"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Ukupno"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Izbor servera"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Procesi"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Konekcije"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL upit"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Statistike reda"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Lokalni"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Procesi"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Preimenuj bazu u"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Remove database"
+msgid "Reload Database"
+msgstr "Ukloni bazu"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Kopiraj bazu u"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Karakter set"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Napravi tabelu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Koristi tabele"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Pretraživanje"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL upit"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL upit"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Pregled"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Brišem %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL upit"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL upit"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Skladištenja"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1267,77 +1309,77 @@ msgstr "Promeni"
msgid "Save"
msgstr "Sačuvaj"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Sakrij"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Izaberite referencirani ključ"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Izaberi strani ključ"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Molimo izaberite primarni ili jedinstveni ključ"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Napravi lozinku"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Napravi"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1345,128 +1387,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Napravi relaciju"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Baza ne postoji"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "Podaci"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodna"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Sledeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "maj"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "avg"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1474,176 +1516,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "dec"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sre"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1739,7 +1781,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Baze"
@@ -1809,25 +1851,25 @@ msgstr "%s je onemogućen na ovom MySQL serveru."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Neispravna baza podataka"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Neispravan naziv tabele"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Greška pri preimenovanju tabele %1$s u %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabeli %s promenjeno ime u %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1859,10 +1901,9 @@ msgstr "Nije pronađena tema %s!"
msgid "Theme path not found for theme %s!"
msgstr "Nije pronađena putanja do teme za temu %s!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / stil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1870,7 +1911,6 @@ msgstr "Ne mogu da se povežem: neispravna podešavanja."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Dobrodošli na %s"
@@ -2021,7 +2061,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabele"
@@ -2110,7 +2150,6 @@ msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2158,7 +2197,7 @@ msgid "Documentation"
msgstr "Dokumentacija"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL upit"
@@ -2166,121 +2205,121 @@ msgstr "SQL upit"
msgid "MySQL said: "
msgstr "MySQL reče: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Preskoči objašnjavanje SQL-a"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Osveži"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Preskoči proveru SQL-a"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Proveri SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Skladištenja"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilisanje"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "bajtova"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Početak"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Prethodna"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Kraj"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Pređi na bazu "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2292,42 +2331,42 @@ msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s"
msgid "Structure"
msgstr "Struktura"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Novi zapis"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operacije"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "direktorijum za slanje veb servera "
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktorijum koji ste izabrali za slanje nije dostupan"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2687,7 +2726,7 @@ msgstr "Preimenuj bazu u"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4681,7 +4720,7 @@ msgstr "Dizajner"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegije"
@@ -4693,7 +4732,7 @@ msgstr "Rutine"
msgid "Return type"
msgstr "Povratni tip"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4909,9 +4948,9 @@ msgstr "Karakter set datoteke:"
msgid "Compression:"
msgstr "Kompresija"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "nema"
@@ -5061,39 +5100,57 @@ msgstr ""
msgid "Language"
msgstr "Jezik"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Dodaj/obriši kolonu"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d nije ispravan broj reda."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr " redova počev od reda"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horizontalnom"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horizontalnom (rotirana zaglavlja)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikalnom"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "u %s modu i ponovi zaglavlje posle svakog %s reda"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sortiraj po ključu"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5106,102 +5163,102 @@ msgstr "Sortiraj po ključu"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Opcije"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Deo teksta"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Pun tekst"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Tranformacije čitača"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Promeni"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operacije na rezultatima upita"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Pogled za štampu (sa punim tekstom)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Napravi relaciju"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -5250,7 +5307,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Skup prihvatnika"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -5733,7 +5790,7 @@ msgstr "Dostupni MIME-tipovi"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Domaćin"
@@ -5943,7 +6000,7 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generisao"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
@@ -6105,7 +6162,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Nema izmena"
@@ -6435,14 +6492,14 @@ msgid "Slave status"
msgstr "Prikaži status podređenih servera"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Promenljiva"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Vrednost"
@@ -6682,20 +6739,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binarni dnevnik"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Promenljive"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Kodne strane"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Skladištenja"
@@ -6745,11 +6802,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Zapamti SQL-upit"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
@@ -6985,7 +7042,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Dodaj novog korisnika"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Vreme"
@@ -7225,7 +7282,7 @@ msgid "Protocol version"
msgstr "Verzija protokola"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Korisnik"
@@ -7505,7 +7562,7 @@ msgstr "Napravi"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7703,17 +7760,17 @@ msgstr "Tabela \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr "Izaberite binarni dnevnik za pregled"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Prikaži skraćene upite"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Prikaži kompletne upite"
@@ -8241,7 +8298,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:262
+#: server_replication.php:182 server_status.php:295
#, fuzzy
msgid "Show master status"
msgstr "Prikaži status podređenih servera"
@@ -8382,205 +8439,195 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "Proces %s je uspešno prekinut."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Rukovalac"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Keš upita"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Niti"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Privremeni podaci"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Odložena umetanja"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Keš ključeva"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Spojevi"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Sortiranje"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Koordinator transakcija"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Očisti (zatvori) sve tabele"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Prikaži otvorene tabele"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Prikaži podređene server"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Prikaži status podređenih servera"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Očisti keš upita"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Informacije o toku rada"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Izbor servera"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Statistike reda"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Osveži"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "u sekundi"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "u sekundi"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "se koristi"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "se koristi"
+msgstr[1] "se koristi"
+msgstr[2] "se koristi"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "u sekundi"
+msgstr[1] "u sekundi"
+msgstr[2] "u sekundi"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "Proces %s je uspešno prekinut."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Rukovalac"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Keš upita"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Niti"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Privremeni podaci"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Odložena umetanja"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Keš ključeva"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Spojevi"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Sortiranje"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Koordinator transakcija"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Očisti (zatvori) sve tabele"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Prikaži otvorene tabele"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Prikaži podređene server"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Prikaži status podređenih servera"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Očisti keš upita"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Informacije o toku rada"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Izbor servera"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemoj da menjaš lozinku"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "na sat"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "u minutu"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "u sekundi"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Vrsta upita"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Saobraćaj"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8588,45 +8635,41 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Poslato"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Konekcije"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "maks. istovremenih veza"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Neuspelih pokušaja"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Procesi"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8636,16 +8679,16 @@ msgstr ""
"prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da "
"smeste izraze iz transakcije."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8657,11 +8700,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Koliko privremenih datoteka je mysqld napravio."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8669,7 +8712,7 @@ msgstr ""
"Broj privremenih tabela koje je server automatski kreirao u memoriji dok je "
"izvršavao izraze."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8677,7 +8720,7 @@ msgstr ""
"Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška "
"(verovatno duplirani ključ)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8685,23 +8728,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Broj upisanih INSERT DELAYED redova."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Broj izvršenih FLUSH izraza."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Broj internih COMMIT izraza."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Broj brisanja nekog reda tabele."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8711,7 +8754,7 @@ msgstr ""
"tabelu određenog imena. To se naziva otkrivanjem (discovery). "
"Handler_discover označava broj puta kada je otkrivena tabela."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8721,7 +8764,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:855
+#: server_status.php:864
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."
@@ -8729,7 +8772,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:856
+#: server_status.php:865
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 "
@@ -8739,7 +8782,7 @@ msgstr ""
"kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite "
"skeniranje indeksa."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8747,7 +8790,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:858
+#: server_status.php:867
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 "
@@ -8759,7 +8802,7 @@ msgstr ""
"mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve "
"koji ne koriste ključeve propisno."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8771,35 +8814,35 @@ msgstr ""
"nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već "
"postojeće indekse."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Broj internih ROLLBACK izraza."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Broj zahteva za ažuriranje reda u tabeli."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Broj zahteva za upisivanje reda u tabelu."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Broj strana koje su trenutno prljave."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Broj slobodnih strana."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8809,7 +8852,7 @@ msgstr ""
"čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene "
"niti uklonjene."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8821,11 +8864,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Puna veličina ostave bafera, u stranama."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8833,7 +8876,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8841,11 +8884,11 @@ msgstr ""
"Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada "
"InnoDB radi sekvencijalno skeniranje cele tabele."
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8853,7 +8896,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:874
+#: server_status.php:883
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 "
@@ -8867,55 +8910,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:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Broj upisa učinjenih u InnoDB ostavu bafera."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Broj fsync() operacija do sada."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Trenutni broj fsync() operacija na čekanju."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Trenutni broj čitanja na čekanju."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Trenutni broj upisa na čekanju."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Količina podataka pročitanih do sada, u bajtovima."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Ukupan broj čitanja podataka."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Ukupan broj upisa podataka."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Količina podataka upisanih do sada, u bajtovima"
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8923,35 +8966,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Broj zahteva za upis u dnevnik."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Broj fizičkih upisa u datoteku dnevnika."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Broj fsync-ova za datoteku dnevnika na čekanju."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Broj upisa u datoteku dnevnika na čekanju."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Broj bajtova upisanih u datoteku dnevnika."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Broj napravljenih strana."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8960,52 +9003,52 @@ msgstr ""
"vrednosti se računaju u stranama; veličina strane omogućava da se one lako "
"konvertuju u bajtove."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Broj pročitanih strana."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Broj zapisanih strana."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Broj brava za redove koje se trenutno čekaju."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Broj redova obrisanih iz InnoDB tabela."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Broj redova umetnutih u InnoDB tabele."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Broj redova pročitanih iz InnoDB tabela."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Broj redova ažuriranih u InnoDB tabelama."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9013,7 +9056,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:907
+#: server_status.php:916
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."
@@ -9021,7 +9064,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:908
+#: server_status.php:917
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 "
@@ -9031,11 +9074,11 @@ msgstr ""
"vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u "
"isto vreme."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9045,15 +9088,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -9063,17 +9106,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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9081,39 +9124,39 @@ msgstr ""
"Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je "
"verovatno premali."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Broj otvorenih datoteka."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Broj otvorenih tabela."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Količina slobodne memorije za keš upita."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Broj pogodaka iz keša."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Broj upita dodatih u keš."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9125,7 +9168,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9133,19 +9176,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:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Broj upita registrovanih u kešu."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Ukupan broj blokova u kešu za upite."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status replikacije otporne na greške (nije još implementirano)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9153,11 +9196,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9166,7 +9209,7 @@ msgstr ""
"reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših "
"tabela.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9174,15 +9217,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9190,11 +9233,11 @@ msgstr ""
"Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju "
"pokušala transakcije."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9202,12 +9245,12 @@ msgstr ""
"Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile "
"pokrenute."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9217,23 +9260,23 @@ msgstr ""
"Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti "
"sistemske promenljive sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Broj sortiranja koja su urađena sa opsegom."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Broj sortiranih redova."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9245,7 +9288,7 @@ msgstr ""
"bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili "
"tabele ili da koristite replikaciju."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9255,11 +9298,11 @@ msgstr ""
"Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate "
"vaš thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Broj trenutno otvorenih veza."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9271,7 +9314,7 @@ msgstr ""
"implementaciju niti, ovo obično ne donosi primetna poboljšanja u "
"performansama.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Broj niti koje nisu uspavane."
@@ -9396,7 +9439,7 @@ msgstr "Serverske promenljive i podešavanja"
msgid "Session value"
msgstr "Vrednost sesije"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globalna vrednost"
@@ -9675,41 +9718,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pregledaj strane vrednosti"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Prikaz kao PHP kod"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Prikaz kao SQL upit"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Proveri SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem pri indeksiranju tabele `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Naziv"
@@ -10097,25 +10140,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Napravi \"upit po primeru\" (džoker: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Izaberi polja (najmanje jedno)"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Broj redova po strani"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Redosled prikaza:"
@@ -10414,8 +10457,12 @@ msgstr "naziv za VIEW"
msgid "Rename view to"
msgstr "Promeni ime tabele u "
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / stil"
+
+#~ msgid "seconds"
+#~ msgstr "u sekundi"
+
#~ msgid "Query results"
#~ msgstr "Operacije na rezultatima upita"
@@ -10429,8 +10476,6 @@ msgstr "Promeni ime tabele u "
#~ msgid "Show processes"
#~ msgstr "Prikaži listu procesa"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Poništi"
@@ -10449,31 +10494,20 @@ msgstr "Promeni ime tabele u "
#~ "Statistike upita : %s upita je postavljeno serveru od njegovog "
#~ "pokretanja."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Privilegije su uspešno ponovo učitane."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Može biti približno. Vidite FAQ 3.11"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Vrsta upita"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Dodaj novog korisnika"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Napravi relaciju"
diff --git a/po/sv.po b/po/sv.po
index 71ee51685b..03d9b9b695 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,9 +3,9 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-09 23:29+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-16 00:11+0200\n"
+"Last-Translator: \n"
"Language-Team: swedish \n"
"Language: sv\n"
"MIME-Version: 1.0\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Visa alla"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"fönstret eller så är din webbläsares säkerhetsinställningar konfigurerade "
"att blockera flerfönster uppdateringar."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Sök"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Sök"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Nyckel"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Beskrivning"
@@ -137,7 +137,7 @@ msgstr "Tabellkommentarer"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolumn"
@@ -150,7 +150,7 @@ msgstr "Kolumn"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -166,7 +166,7 @@ msgstr "Typ"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Länkar till"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Kommentarer"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nej"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Nej"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Visa SQL-satser för databasen"
msgid "No tables found in database."
msgstr "Inga tabeller funna i databasen."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Markera alla"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Avmarkera alla"
@@ -271,7 +271,7 @@ msgstr "Databas %s har kopierats till %s"
msgid "Rename database to"
msgstr "Byt namn på databasen till"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Kommando"
@@ -332,7 +332,7 @@ msgstr "Byt till kopierad databas"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -356,7 +356,7 @@ msgstr "Editera eller exportera relationsschema"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tabell"
@@ -372,7 +372,7 @@ msgstr "Rader"
msgid "Size"
msgstr "Storlek"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "används"
@@ -398,7 +398,7 @@ msgstr "Senaste uppdatering"
msgid "Last check"
msgstr "Senaste kontroll"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +418,25 @@ msgid "visual builder"
msgstr "grafisk modellerare"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sortera"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Stigande"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Fallande"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Visa"
@@ -459,7 +459,7 @@ msgstr "Ta bort"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Eller"
@@ -488,58 +488,58 @@ msgstr "Använd tabeller"
msgid "SQL query on database %s :"
msgstr "SQL-fråga i databas %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Kör fråga"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Åtkomst nekad"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "minst ett av orden"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "alla ord"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "den exakta frasen"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "som reguljärt uttryck"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Resultat av sökning efter \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s träff i tabell %s "
msgstr[1] "%s träffar i tabell %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visa"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "radera matchande för %s tabellen?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -550,171 +550,171 @@ msgstr "radera matchande för %s tabellen?"
msgid "Delete"
msgstr "Radera"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Totalt: %s träff"
msgstr[1] "Totalt: %s träffar"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Sök i databas"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Hitta:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Ord är separerade med mellanslag (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "I tabell(er):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Inuti kolumnen:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Inga tabeller finns i databasen."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabellen %s har tömts"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Vyn %s har tagits bort"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabellen %s har tagits bort"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Spårning är aktiv."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Spårning är inte aktiv."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"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:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Vy"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikering"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Summa"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s är standardlagringsmotorn på denna MySQL-server."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med markerade:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Markera alla"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Avmarkera alla"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Markera ooptimerade"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportera"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Utskriftsvänlig visning"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Töm"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Radera"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Kontrollera tabell"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimera tabell"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparera tabell"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analysera tabell"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Lägg till prefix till tabellen"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Ersätt tabellprefix"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Kopiera tabell med prefix"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datalexikon"
@@ -729,9 +729,9 @@ msgstr "Spårade tabeller"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Databas"
@@ -747,8 +747,8 @@ msgstr "Skapad"
msgid "Updated"
msgstr "Uppdaterad"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Status"
@@ -891,7 +891,7 @@ msgstr "Bokmärket har tagits bort."
msgid "Showing bookmark"
msgstr "Visar bokmärke"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmärket %s har skapats"
@@ -919,7 +919,7 @@ msgstr ""
"tidsbegränsningar."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -945,15 +945,15 @@ msgstr "Klicka för att markera"
msgid "Click to unselect"
msgstr "Klicka för att avmarkera"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" satserna är inaktiverade."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Vill du verkligen "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Du håller på att FÖRSTÖRA en hel databas!"
@@ -1004,10 +1004,8 @@ msgstr "Detta är inte ett nummer!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Antal loggfiler"
+msgstr "Totalt antal"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1043,157 +1041,195 @@ msgstr "Tar bort markerade användare"
msgid "Close"
msgstr "Stäng"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Välj server"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "Visa fråge diagram"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Total"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "Laddar"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Processa begäran"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "Fel i processbegäran"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "Tar bort kolumn"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "Lägger till primär nyckel"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Döp om databaser"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Ladda om databas"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Kopiera databas"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Ändra teckenuppsättning"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Tabellen måste ha åtminstone ett fält."
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Skapa tabell"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "Lägg till en tabell"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Söker"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "Dölj sökresultat"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "Visa sökresultat"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "Bläddrar bland"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "Raderar"
-
-#: js/messages.php:111
-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:114
-msgid "Hide query box"
-msgstr "Göm sök-rutan"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Visa frågerutan"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Redigera"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ändra"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr "Live trafik diagram"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr "Live anslutning/process diagram"
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr "Live sökfrågediagram"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr "Statisk data"
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Total"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr "Annan"
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Server trafik"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Processer"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Förbindelser"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL-frågor"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Visa statistik"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "Laddar"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Processa begäran"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Fel i processbegäran"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "Tar bort kolumn"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "Lägger till primär nyckel"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Döp om databaser"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Ladda om databas"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Kopiera databas"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Ändra teckenuppsättning"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Tabellen måste ha åtminstone ett fält."
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Skapa tabell"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "Lägg till en tabell"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Söker"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "Dölj sökresultat"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "Visa sökresultat"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "Bläddrar bland"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "Raderar"
+
+#: js/messages.php:124
+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:127
+msgid "Hide query box"
+msgstr "Göm sök-rutan"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Visa frågerutan"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Redigera"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1201,41 +1237,41 @@ msgstr "Ändra"
msgid "Save"
msgstr "Spara"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Dölj"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Dölj sökkriterier"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Visa sökkriterier"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorera"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Välj refererad nyckel"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Välj främmande nyckel"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Välj den primära nyckeln eller en unik nyckel"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Välj kolumn att visa"
-#: js/messages.php:133
+#: js/messages.php:146
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?"
@@ -1243,27 +1279,27 @@ msgstr ""
"Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte "
"sparar dem. Vill du fortsätta?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Välj ett alternativ för kolumn"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Skapa lösenord"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generera"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Ändra lösenord"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Mera"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1273,258 +1309,258 @@ msgstr ""
"senaste versionen är %s, publicerad den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr "senaste stabila version:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "aktuell"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Klart"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Föregående"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Nästa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Idag"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "januari"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "februari"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "mars"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "april"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "maj"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "juni"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "juli"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "augusti"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "september"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "oktober"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "november"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "dec"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Söndag"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Måndag"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Tisdag"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Lördag"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Lör"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Sö"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Må"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "On"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Lö"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Vecka"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Timmar"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Minuter"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Sekunder"
@@ -1618,7 +1654,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Databaserna"
@@ -1684,25 +1720,25 @@ msgstr "%s har inaktiverats på denna MySQL-server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Ogiltig databas"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Ogiltigt tabellnamn"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fel vid namnbyte av tabell %1$s till %2$s"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Tabell %s har döpts om till %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Kunde inte spara UI inställningarna för tabellen"
@@ -1734,10 +1770,9 @@ msgstr "Tema %s hittades inte!"
msgid "Theme path not found for theme %s!"
msgstr "Temats sökväg för tema %s hittades inte!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Stil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1745,7 +1780,6 @@ msgstr "Kan ej skapa förbindelse: ogiltiga inställningar."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Välkommen till %s"
@@ -1896,7 +1930,7 @@ msgstr "delad"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tabeller"
@@ -1979,7 +2013,6 @@ msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2027,7 +2060,7 @@ msgid "Documentation"
msgstr "Dokumentation"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-fråga"
@@ -2035,119 +2068,119 @@ msgstr "SQL-fråga"
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Kunde inte ansluta till MySQL validerare"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Förklara SQL-kod"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Utan SQL-förklaring"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "Utan PHP-kod"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Skapa PHP-kod"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Uppdatera"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Hoppa över SQL-validering"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Validera SQL-kod"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Redigera denna fråga"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Infogad"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profilering"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "bytes"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y kl %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagar, %s timmar, %s minuter och %s sekunder"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Starta"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Föregående"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Slut"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Hoppa till databas "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2159,41 +2192,41 @@ msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s"
msgid "Structure"
msgstr "Struktur"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Lägg till"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operationer"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Gå igenom din dator:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Välj katalog att ladda upp till från web-server listningen %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Det finns inga filer att ladda upp"
@@ -2554,7 +2587,7 @@ msgstr "Standard tabellflik"
msgid "Show binary contents as HEX by default"
msgstr "Visa binärt innehåll som HEX som standard"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Visa binärt innehåll som HEX"
@@ -4579,7 +4612,7 @@ msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegier"
@@ -4591,7 +4624,7 @@ msgstr "Rutiner"
msgid "Return type"
msgstr "Returtyp"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4774,9 +4807,9 @@ msgstr "Teckenuppsättning för filen:"
msgid "Compression:"
msgstr "Komprimering:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Inget"
@@ -4909,37 +4942,53 @@ msgstr "Format-specifika alternativ:"
msgid "Language"
msgstr "Språk"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Återställ ordningen på kolumner"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Dra för att ändra ordning"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Klicka för att sortera"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "Klicka för att markera/avmarkera"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d är inte ett giltigt radnummer."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "rad(er) med start från rad #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "horisontell"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "horisontell (roterade rubriker)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikal"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "i%s läge och upprepa rubrikerna efter % s celler"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Sortera efter nyckel"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4952,92 +5001,92 @@ msgstr "Sortera efter nyckel"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Alternativ"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Förkortade texter"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Kompletta texter"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Besläktad nyckel"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Kolumn för besläktad nyckel"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Visa binärt innehåll"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "Visa BLOB-innehåll"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Webbläsaromvandling"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopiera"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Raden har raderats"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Döda"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "i fråga"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Visar rader"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Frågan tog %01.4f sek"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ändra"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Operationer för frågeresultat"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Utskriftsvänlig version (med fullständiga texter)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Visa diagram"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Skapa vy"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Länken hittades inte"
@@ -5085,7 +5134,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffertutrymme"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB-status"
@@ -5582,7 +5631,7 @@ msgstr "Visa MIME-typer"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Värd"
@@ -5804,7 +5853,7 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Genererad av"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -5967,7 +6016,7 @@ msgstr "Lägg till tabellprefix"
msgid "Add prefix"
msgstr "Lägg till prefix"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Ingen förändring"
@@ -6301,14 +6350,14 @@ msgid "Slave status"
msgstr "Slav-status"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Värde"
@@ -6536,20 +6585,20 @@ msgid "Synchronize"
msgstr "Synkronisera"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binär logg"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Variabler"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Teckenuppsättningar"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motorer"
@@ -6594,11 +6643,11 @@ msgstr "Rensa"
msgid "Columns"
msgstr "Kolumn"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Skapa bokmärke för den här SQL-frågan"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Låt varje användare få tillgång till detta bokmärke"
@@ -6824,7 +6873,7 @@ msgstr "Partitionsdefinition"
msgid "+ Add a new value"
msgstr "+ Lägg till ett nytt värde"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Tid"
@@ -7023,7 +7072,7 @@ msgid "Protocol version"
msgstr "Protokollversion"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Användare"
@@ -7290,7 +7339,7 @@ msgstr "Aggregera"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Aktör"
@@ -7467,17 +7516,17 @@ msgstr "Filen finns inte"
msgid "Select binary log to view"
msgstr "Välj binär logg att visa"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Korta av visade frågor"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Visa fullständiga frågor"
@@ -8003,7 +8052,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Visa master-status"
@@ -8150,178 +8199,155 @@ msgstr ""
"Denna server är inte konfigurerad som slav i en replikering process. Vill du "
"konfigurera den?"
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Uppdateringsfrekvens"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "minutes"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "minuter"
+msgstr[1] "minuter"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Sekund"
+msgstr[1] "Sekund"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråden %s dödades med framgång."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Hanterare"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Frågecache"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Trådar"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Temporära data"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Fördröjda infogningar"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Nyckelcache"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Kopplingar"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Transaktionssamordnare"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Flush (stäng) alla tabeller"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Visa öppna tabeller"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Visa slav-värdar"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Visa slav-status"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Rensa frågecache"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Körningsinformation"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Välj server"
+msgstr "Server trafik"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Visa statistik"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Se slavtabell status"
+msgstr "Alla statusvariabler"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Uppdatera"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Sekunder"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Sekunder"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Minuter"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "Ändra inte lösenordet"
+msgstr "Innehåller ordet:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Visa öppna tabeller"
+msgstr "Visa endast varnings värden"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Filtrera efter kategori ..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "Liknande länkar"
+msgstr "Liknande länkar:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "per timme"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "per minut"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "per sekund"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Fråge-typ"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "#"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Nätverkstrafik sedan start:%s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Denna MySQL-server har varit igång i %s. Den startade den %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8329,33 +8355,33 @@ msgstr ""
"Denna MySQL-server fungerar sommaster ochslave i "
"replicerings process."
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
"Denna MySQL server arbetar som master in replication process."
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Denna MySQL server arbetar som slave in replication process."
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen ."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Replikeringsstatus"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8363,45 +8389,39 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Mottagna"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Skickade"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Förbindelser"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Max. samtidiga förbindelser"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Misslyckade försök"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Avbrutna"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Processer"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Could not connect to MySQL server"
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "Kunde inte ansluta till MySQL-server"
+msgstr "Antalet misslyckade försök att ansluta till MySQL-servern."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8411,16 +8431,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:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern."
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8432,11 +8452,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Antalet temporära filer som mysqld har skapat."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8444,7 +8464,7 @@ msgstr ""
"Antalet temporära tabeller i minne skapade automatiskt av servern under "
"utförande av satser."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8452,7 +8472,7 @@ msgstr ""
"Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod "
"(förmodligen dubblerad nyckel)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8460,23 +8480,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "Antalet skrivna rader med INSERT DELAYED."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Antalet utförda FLUSH-satser."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Antalet interna COMMIT-satser."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8486,7 +8506,7 @@ msgstr ""
"tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar "
"antalet gånger tabeller har upptäckts."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8496,7 +8516,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:855
+#: server_status.php:864
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."
@@ -8505,7 +8525,7 @@ msgstr ""
"är högt är det en bra indikation på att dina frågor och tabeller är riktigt "
"indexerade."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8515,7 +8535,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8523,7 +8543,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:858
+#: server_status.php:867
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 "
@@ -8535,7 +8555,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:859
+#: server_status.php:868
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 "
@@ -8547,35 +8567,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Antalet interna ROLLBACK-satser."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antalet sidor innehållande data (orena eller rena)."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Antalet sidor för närvarande orena."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Antalet tomma sidor."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8585,7 +8605,7 @@ msgstr ""
"läses eller skrivs eller som inte kan rensas eller tas bort av någon annan "
"anledning."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8597,11 +8617,11 @@ msgstr ""
"också beräknas som Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Total storlek på buffert, i antal sidor."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8609,7 +8629,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8617,11 +8637,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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8629,7 +8649,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:874
+#: server_status.php:883
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 "
@@ -8643,51 +8663,51 @@ msgstr ""
"fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta "
"värde vara litet."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antalet skrivningar gjorda till InnoDB-bufferten."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Antalet fsync()-operationer hittills."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Nuvarande antal väntande fsync()-operationer."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Nuvarande antal väntande läsningar."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Nuvarande antal väntande skrivningar."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Mängden data läst hittills, i bytes."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Totalt antal läsningar av data."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Totalt antal skrivningar av data."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Mängden data skriven hittills, i bytes."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "Antalet doublewrite transaktioner som har utförts.."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -8695,35 +8715,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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Antalet skriv-begäran att skriva till logg."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Antalet fysiska skrivningar till loggfilen."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Antalet fsync()-skrivningar gjorda till loggfilen."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Antalet väntande fsync() av loggfil."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Väntande skrivningar till loggfil."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Antalet bytes skrivna till loggfilen."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Antalet skapade sidor."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8731,51 +8751,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Antalet lästa sidor."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Antalet skrivna sidor."
-#: server_status.php:897
+#: server_status.php:906
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:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antalet rader borttagna från InnoDB-tabeller."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antalet rader tillagda i InnoDB-tabeller."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "Antalet rader lästa från InnoDB-tabeller."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "Antalet rader uppdaterade i InnoDB-tabeller."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8783,7 +8803,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:907
+#: server_status.php:916
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."
@@ -8791,7 +8811,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:908
+#: server_status.php:917
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 "
@@ -8800,11 +8820,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8814,15 +8834,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -8833,17 +8853,19 @@ msgstr ""
"av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats "
"ännu."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"Det maximala antalet anslutningar som har använts samtidigt sedan servern "
+"startade."
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8851,38 +8873,40 @@ 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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Antalet filer som är öppna."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Antalet tabeller som är öppna."
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, "
+"vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando."
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Mängden fritt minne för frågecache."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Antalet cache-träffar."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Antalet förfrågningar tillagda i cachen."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8894,7 +8918,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8902,19 +8926,19 @@ msgstr ""
"Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga "
"inställningen query_cache_type)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Antalet frågor registrerade i cachen."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Totala antalet block i frågecachen."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status för felsäker replikering (ännu inte implementerat)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8922,11 +8946,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -8935,7 +8959,7 @@ msgstr ""
"varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för "
"dina tabeller.)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8943,17 +8967,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -8961,25 +8985,25 @@ msgstr ""
"Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har "
"omprövat transaktioner."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
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:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -8989,23 +9013,23 @@ msgstr ""
"detta värde är stort bör du överväga att öka värdet i systemvariabeln "
"sort_buffer_size."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Antalet sorteringar som gjordes med intervall."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Antalet sorterade rader."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9017,7 +9041,7 @@ msgstr ""
"du först optimera dina frågor och antingen dela upp din tabell eller "
"tabeller eller använda replikering."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9027,11 +9051,11 @@ msgstr ""
"Threads_created/Connections. Om detta värde är rött bör du öka värdet "
"thread_cache_size."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Antalet öppna förbindelser."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9043,7 +9067,7 @@ msgstr ""
"(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra "
"trådimplementering.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Antalet trådar som inte är vilande."
@@ -9166,7 +9190,7 @@ msgstr "Servervariabler och inställningar"
msgid "Session value"
msgstr "Sessionsvärde"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Globalt värde"
@@ -9490,39 +9514,39 @@ msgstr "Nyckeln är för kort, den ska ha minst 8 tecken."
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Bläddra bland främmande värden"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Använd bokmärke \"% s\" som standard webbläsarfråga."
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Infogade rad id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "Visar som PHP-kod"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "Visar SQL-fråga"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Validerad SQL-kod"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem med index för tabell `%s`"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etikett"
@@ -9604,10 +9628,8 @@ msgid "Line"
msgstr "Linje"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "Infogad"
+msgstr "ISpårning"
#: tbl_chart.php:89
msgid "Pie"
@@ -9618,50 +9640,36 @@ msgid "Stacked"
msgstr "Staplade"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Rapport titel:"
+msgstr "Diagramtitel"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "X-axel:"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "SQL-frågor"
+msgstr "Serie:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Textarea kolumner"
+msgstr "Återstående kolumner"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
msgstr "X-axel etikett"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Värde"
+msgstr "X värde"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
msgstr "Y-axel etikett"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Värde"
+msgstr "Y värden"
#: tbl_create.php:56
#, php-format
@@ -9902,23 +9910,23 @@ msgstr "Begränsning av främmande nyckel"
msgid "No rows selected"
msgstr "Inga rader valda"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Markera kolumner (minst en):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Anntal rader per sida"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Visningsordning:"
@@ -10198,6 +10206,12 @@ msgstr "VIEW namn"
msgid "Rename view to"
msgstr "Ändra namn till"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Stil"
+
+#~ msgid "seconds"
+#~ msgstr "sekunder"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Jämför exekveringstid (millisekunder"
diff --git a/po/ta.po b/po/ta.po
index 7ac0c0c1cd..bac651b948 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
@@ -18,18 +18,18 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
#: libraries/schema/User_Schema.class.php:360
msgid "Page number:"
-msgstr ""
+msgstr "ஓலை என்"
#: browse_foreigners.php:133
msgid ""
@@ -38,23 +38,23 @@ msgid ""
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
-msgstr ""
+msgstr "தேடல்"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr ""
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr ""
@@ -135,7 +135,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr ""
@@ -164,7 +164,7 @@ msgstr ""
msgid "Null"
msgstr ""
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -193,7 +193,7 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -204,12 +204,12 @@ msgstr ""
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr ""
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -224,7 +224,7 @@ msgstr ""
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -243,11 +243,11 @@ msgstr ""
msgid "No tables found in database."
msgstr ""
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr ""
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr ""
@@ -269,7 +269,7 @@ msgstr ""
msgid "Rename database to"
msgstr ""
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr ""
@@ -330,7 +330,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -353,7 +353,7 @@ msgstr ""
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr ""
@@ -369,7 +369,7 @@ msgstr ""
msgid "Size"
msgstr ""
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr ""
@@ -395,7 +395,7 @@ msgstr ""
msgid "Last check"
msgstr ""
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -415,25 +415,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr ""
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr ""
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr ""
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr ""
@@ -489,58 +489,58 @@ msgstr ""
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr ""
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr ""
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr ""
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr ""
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr ""
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr ""
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -551,173 +551,173 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr ""
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr ""
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr ""
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr ""
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr ""
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr ""
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr ""
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr ""
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr ""
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Display table filter"
msgid "Replace table prefix"
msgstr "கருதிட்குள் சேர்க்க"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr ""
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -732,9 +732,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr ""
@@ -750,8 +750,8 @@ msgstr ""
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr ""
@@ -885,7 +885,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -908,7 +908,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -934,15 +934,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1032,156 +1032,192 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-msgid "Live traffic chart"
-msgstr ""
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-msgid "Live query chart"
-msgstr ""
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr ""
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr ""
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr ""
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr ""
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr ""
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "You have added a new user."
-msgid "Table must have at least one column"
-msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr ""
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr ""
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr ""
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr ""
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr ""
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr ""
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr ""
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr ""
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr ""
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Inline"
-msgid "Inline Edit"
-msgstr "உள்வரிசை"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+msgid "Live traffic chart"
+msgstr ""
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+msgid "Live query chart"
+msgstr ""
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr ""
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+msgid "Server traffic (in KiB)"
+msgstr ""
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr ""
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr ""
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr ""
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr ""
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr ""
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr ""
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr ""
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "You have added a new user."
+msgid "Table must have at least one column"
+msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr ""
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr ""
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr ""
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr ""
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr ""
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr ""
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr ""
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr ""
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr ""
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Inline"
+msgid "Inline Edit"
+msgstr "உள்வரிசை"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1189,69 +1225,69 @@ msgstr ""
msgid "Save"
msgstr ""
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr ""
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr ""
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "திங்கள்"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1259,123 +1295,123 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr ""
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Jan"
msgid "January"
msgstr "தை"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "பங்குனி"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "சித்திரை"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "வைகாசி"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ஆணி"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ஆடி"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ஆவணி"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ஐப்பசி"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1383,174 +1419,174 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "மார்கழி"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ஞாயிறு"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "திங்கள்"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "செவ்வாய்"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "வெள்ளி"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "திங்கள்"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "செவ்வாய்"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "புதன்"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "வியாழன்"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "வெள்ளி"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "சனி"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "ஞாயிறு"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "திங்கள்"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "செவ்வாய்"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "புதன்"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "வியாழன்"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "வெள்ளி"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "சனி"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr ""
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr ""
@@ -1639,7 +1675,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr ""
@@ -1705,25 +1741,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr ""
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1755,9 +1791,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1766,7 +1801,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr ""
@@ -1914,7 +1948,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr ""
@@ -1990,7 +2024,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr ""
@@ -2038,7 +2071,7 @@ msgid "Documentation"
msgstr ""
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr ""
@@ -2046,119 +2079,119 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr " வினாவிற்கான உன்வரிசை மாற்றப்பகுதி "
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "உள்வரிசை"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2170,41 +2203,41 @@ msgstr ""
msgid "Structure"
msgstr ""
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr ""
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr ""
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2545,7 +2578,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4430,7 +4463,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr ""
@@ -4442,7 +4475,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4620,9 +4653,9 @@ msgstr ""
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr ""
@@ -4741,37 +4774,55 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr ""
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4784,94 +4835,94 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Add into comments"
msgid "Display chart"
msgstr "கருதிட்குள் சேர்க்க"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr ""
@@ -4915,7 +4966,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5358,7 +5409,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr ""
@@ -5560,7 +5611,7 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -5713,7 +5764,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr ""
@@ -6038,14 +6089,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr ""
@@ -6269,20 +6320,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6327,11 +6378,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6534,7 +6585,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr ""
@@ -6687,7 +6738,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr ""
@@ -6927,7 +6978,7 @@ msgstr ""
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7100,17 +7151,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr ""
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7613,7 +7664,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7746,245 +7797,234 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr ""
+
+#: server_status.php:31
+#, php-format
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: server_status.php:33
+#, php-format
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] ""
+msgstr[1] ""
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr ""
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr ""
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr ""
-#: server_status.php:367
+#: server_status.php:400
msgid "Server traffic"
msgstr ""
-#: server_status.php:368
-msgid "Query statistics"
-msgstr ""
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-msgid "Refresh rate"
-msgstr ""
-
-#: server_status.php:380 server_status.php:411
-msgid "second"
-msgstr ""
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-msgid "seconds"
-msgstr ""
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-msgid "minutes"
-msgstr ""
-
-#: server_status.php:440
+#: server_status.php:455
msgid "Containing the word:"
msgstr ""
-#: server_status.php:445
+#: server_status.php:460
msgid "Show only alert values"
msgstr ""
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
msgid "Related links:"
msgstr ""
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "நிறுத்தப்பட்டுள்ளது"
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -7992,78 +8032,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8071,7 +8111,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8079,42 +8119,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8122,33 +8162,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8157,227 +8197,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8385,99 +8425,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8485,18 +8525,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8504,7 +8544,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8625,7 +8665,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -8897,39 +8937,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr ""
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9295,23 +9335,23 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr ""
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr ""
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr ""
@@ -9589,8 +9629,6 @@ msgstr ""
msgid "Rename view to"
msgstr ""
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "புதிய பயனாளரை சேர்க்க"
diff --git a/po/te.po b/po/te.po
index f4f7f25246..aeec0c42f7 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
@@ -18,12 +18,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "అన్నీ చూపించు"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgid ""
msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "శోధించు"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "శోధించు"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr ""
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "వివరణ"
@@ -137,7 +137,7 @@ msgstr "పట్టిక వ్యాఖ్యలు"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Command"
msgid "Column"
@@ -152,7 +152,7 @@ msgstr "ఆజ్ఞ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "రకం"
@@ -168,7 +168,7 @@ msgstr "రకం"
msgid "Null"
msgstr ""
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -197,7 +197,7 @@ msgstr ""
msgid "Comments"
msgstr "వ్యాఖ్యలు"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -208,12 +208,12 @@ msgstr "వ్యాఖ్యలు"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "కాదు"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -228,7 +228,7 @@ msgstr "కాదు"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -247,11 +247,11 @@ msgstr ""
msgid "No tables found in database."
msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "అన్నీ ఎంచుకో"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "అన్నీ ఎంచుకోవద్దు"
@@ -275,7 +275,7 @@ msgid "Rename database to"
msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి"
# మొదటి అనువాదము
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "ఆజ్ఞ"
@@ -337,7 +337,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -360,7 +360,7 @@ msgstr ""
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "పట్టిక"
@@ -377,7 +377,7 @@ msgid "Size"
msgstr "పరిమాణం"
# మొదటి అనువాదము
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "వాడుకలో ఉన్నది"
@@ -403,7 +403,7 @@ msgstr "చివరి మార్పు"
msgid "Last check"
msgstr "చివరి చూపు"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -424,26 +424,26 @@ msgstr "దృశ్య కల్పకం"
# మొదటి అనువాదము
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "క్రమంలో పేర్చు"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "ఆరోహణ"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "అవరోహణ"
# మొదటి అనువాదము
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "చూపించు"
@@ -467,7 +467,7 @@ msgstr "తొలగించు"
# మొదటి అనువాదము
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "లేదా"
@@ -496,58 +496,58 @@ msgstr "పట్టికల్ని వాడు"
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "క్వెరీ ని సమర్పించు"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "యాక్సెస్ నిరోధించడమైనది"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "కనీసం ఒక్క పదం"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "అన్ని పదాలూ"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr ""
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr ""
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr ""
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] ""
msgstr[1] ""
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -558,66 +558,66 @@ msgstr ""
msgid "Delete"
msgstr "తొలగించు"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "మొత్తం: %s పోలిక"
msgstr[1] "మొత్తం: %s పోలికలు"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr ""
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr ""
# మొదటి అనువాదము
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "వెతుకు"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr ""
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr ""
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr ""
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -625,110 +625,110 @@ msgid ""
msgstr ""
# మొదటి అనువాదము
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "చూపుము"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
# మొదటి అనువాదము
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "మొత్తము"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ఎగుమతి"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr ""
# మొదటి అనువాదము
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "ఖాళీ"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Display table filter"
msgid "Replace table prefix"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr ""
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -744,9 +744,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "డేటాబేస్"
@@ -762,8 +762,8 @@ msgstr ""
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "స్థితి"
@@ -897,7 +897,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -920,7 +920,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -946,15 +946,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1048,177 +1048,217 @@ msgstr ""
msgid "Close"
msgstr "మూసివేయి"
-#: js/messages.php:64 server_status.php:393
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
+#: setup/frames/index.inc.php:137
+msgid "Edit"
+msgstr "మార్చు"
+
+#: js/messages.php:66 server_status.php:416
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:65 server_status.php:396
+#: js/messages.php:67 server_status.php:419
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:66 server_status.php:423
+#: js/messages.php:68 server_status.php:438
msgid "Live query chart"
msgstr ""
-#: js/messages.php:68
+#: js/messages.php:70
msgid "Static data"
msgstr ""
#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
#: tbl_structure.php:790
msgid "Total"
msgstr "మొత్తం"
#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
+#: js/messages.php:74 server_status.php:595
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
+#: js/messages.php:76 libraries/common.lib.php:1375
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
+#: js/messages.php:78 libraries/common.lib.php:1377
msgid "."
msgstr "."
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+msgid "Server traffic (in KiB)"
+msgstr ""
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "అనుసంధానాలు"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Show statistics"
+msgid "Query statistics"
+msgstr "గణాంకాలను చూపించు"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:83
+#: js/messages.php:96
msgid "Loading"
msgstr ""
-#: js/messages.php:84
+#: js/messages.php:97
msgid "Processing Request"
msgstr ""
-#: js/messages.php:85 libraries/import/ods.php:80
+#: js/messages.php:98 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:86
+#: js/messages.php:99
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:100
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:101 libraries/relation.lib.php:87 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:91
+#: js/messages.php:104
#, fuzzy
#| msgid "Database"
msgid "Renaming Databases"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:92
+#: js/messages.php:105
#, fuzzy
#| msgid "Database"
msgid "Reload Database"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:93
+#: js/messages.php:106
#, fuzzy
#| msgid "Database"
msgid "Copying Database"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:94
+#: js/messages.php:107
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "అక్షరమాల"
# మొదటి అనువాదము
-#: js/messages.php:95
+#: js/messages.php:108
#, fuzzy
#| msgid "You have added a new user."
msgid "Table must have at least one column"
msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు"
# మొదటి అనువాదము
-#: js/messages.php:96
+#: js/messages.php:109
#, fuzzy
#| msgid "Create a page"
msgid "Create Table"
msgstr "పుటని సృష్టించు"
-#: js/messages.php:101
+#: js/messages.php:114
#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
msgstr "పట్టికల్ని వాడు"
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
-#: js/messages.php:104
+#: js/messages.php:117
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "శోధించు"
-#: js/messages.php:105
+#: js/messages.php:118
msgid "Hide search results"
msgstr ""
-#: js/messages.php:106
+#: js/messages.php:119
msgid "Show search results"
msgstr ""
-#: js/messages.php:107
+#: js/messages.php:120
msgid "Browsing"
msgstr ""
-#: js/messages.php:108
+#: js/messages.php:121
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "తొలగించు"
-#: js/messages.php:111
+#: js/messages.php:124
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
-#: js/messages.php:114
+#: js/messages.php:127
msgid "Hide query box"
msgstr ""
-#: js/messages.php:115
+#: js/messages.php:128
msgid "Show query box"
msgstr ""
-#: js/messages.php:116
+#: js/messages.php:129
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
-#: setup/frames/index.inc.php:137
-msgid "Edit"
-msgstr "మార్చు"
-
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1227,67 +1267,67 @@ msgid "Save"
msgstr "భద్రపరచు"
# మొదటి అనువాదము
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "దాచు"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr ""
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "సంకేతపదాన్ని మార్చు"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "మరిన్ని"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1295,261 +1335,261 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr ""
# మొదటి అనువాదము
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "గత"
# మొదటి అనువాదము
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "తదుపరి"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "ఈరోజు"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "జనవరి"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "ఫిబ్రవరి"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "మార్చి"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "ఏప్రిల్"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "మే"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "జూన్"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "జూలై"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "ఆగస్ట్"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "సెప్టెంబర్"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "అక్టోబర్"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "నవంబర్"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "డిసెంబర్"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "మే"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "డిసెం"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "ఆదివారం"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "సోమవారం"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "మంగళవారం"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "బుధవారం"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "గురువారం"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "శుక్రవారం"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "శనివారం"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "శని"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "ఆ"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "సో"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "మం"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "బు"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "గు"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "శు"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "శ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "వారం"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "గంట"
# మొదటి అనువాదము
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "నిమిషం"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "క్షణం"
@@ -1638,7 +1678,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr ""
@@ -1708,25 +1748,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr ""
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1759,10 +1799,9 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "అలంకారం / శైలి"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1770,7 +1809,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%sకి స్వాగతం"
@@ -1921,7 +1959,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "పట్టికలు"
@@ -1997,7 +2035,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr ""
@@ -2046,7 +2083,7 @@ msgid "Documentation"
msgstr "పత్రావళి"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr ""
@@ -2054,121 +2091,121 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "బై"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "కిబై"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "మెబై"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "గిబై"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "టెబై"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "పిబై"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "ఎబై"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "మొదలు"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "క్రితము"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "ముగింపు"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2180,41 +2217,41 @@ msgstr ""
msgid "Structure"
msgstr "నిర్మాణాకృతి"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr ""
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr ""
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2559,7 +2596,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4454,7 +4491,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr ""
@@ -4466,7 +4503,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4650,9 +4687,9 @@ msgstr ""
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "ఏమీలేదు"
@@ -4771,37 +4808,55 @@ msgstr ""
msgid "Language"
msgstr "భాష"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Table comments"
+msgid "Restore column order"
+msgstr "పట్టిక వ్యాఖ్యలు"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr ""
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4814,98 +4869,98 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "ఎంపికలు"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "పాక్షిక పాఠ్యాలు"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "పూర్తి పాఠ్యాలు"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "మొత్తం"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
# మొదటి అనువాదము
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "మార్చుము"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "పట్టిక వ్యాఖ్యలు"
# మొదటి అనువాదము
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "సృష్టించు"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr ""
@@ -4949,7 +5004,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5394,7 +5449,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr ""
@@ -5600,7 +5655,7 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -5755,7 +5810,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr ""
@@ -6092,14 +6147,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "విలువ"
@@ -6323,20 +6378,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6383,11 +6438,11 @@ msgstr ""
msgid "Columns"
msgstr "వ్యాఖ్యలు"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6593,7 +6648,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "క్రొత్త వినియోగదారుని చేర్చు"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "సమయం"
@@ -6752,7 +6807,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "వాడుకరి"
@@ -7001,7 +7056,7 @@ msgstr "సృష్టించు"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7183,17 +7238,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "దస్త్రాలు"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7703,7 +7758,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7836,257 +7891,240 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr ""
+
+# మొదటి అనువాదము
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "నిమిషం"
+msgstr[1] "నిమిషం"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "క్షణం"
+msgstr[1] "క్షణం"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr ""
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr ""
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr ""
-#: server_status.php:367
+#: server_status.php:400
msgid "Server traffic"
msgstr ""
-#: server_status.php:368
-#, fuzzy
-#| msgid "Show statistics"
-msgid "Query statistics"
-msgstr "గణాంకాలను చూపించు"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-msgid "Refresh rate"
-msgstr ""
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "క్షణం"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "క్షణం"
-
-# మొదటి అనువాదము
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "నిమిషం"
-
-#: server_status.php:440
+#: server_status.php:455
msgid "Containing the word:"
msgstr ""
-#: server_status.php:445
+#: server_status.php:460
msgid "Show only alert values"
msgstr ""
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "సంబంధాలు"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "గంటకి"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "నిమిషానికి"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "క్షణానికి"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "పంపించు"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "అనుసంధానాలు"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8094,78 +8132,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8173,7 +8211,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8181,42 +8219,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8224,33 +8262,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8259,230 +8297,230 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "సృష్టించబడిన పుటల సంఖ్య"
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "చదివిన పుటల సంఖ్య"
# మొదటి అనువాదము
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "వ్రాసిన పుటల సంఖ్య"
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8490,99 +8528,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8590,18 +8628,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8609,7 +8647,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8733,7 +8771,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "సార్వత్రిక విలువ"
@@ -9009,39 +9047,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr ""
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9413,23 +9451,23 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr ""
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr ""
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr ""
@@ -9712,6 +9750,12 @@ msgstr "నామధేయమును చూపుము"
msgid "Rename view to"
msgstr ""
+#~ msgid "Theme / Style"
+#~ msgstr "అలంకారం / శైలి"
+
+#~ msgid "seconds"
+#~ msgstr "క్షణం"
+
#~ msgid "Width"
#~ msgstr "వెడల్పు"
@@ -9721,20 +9765,15 @@ msgstr ""
#~ msgid "Title"
#~ msgstr "శీర్షిక"
-#, fuzzy
-#~| msgid "Export type"
#~ msgid "Bar type"
#~ msgstr "ఎగుమతి రకం"
-# మొదటి అనువాదము
#~ msgid "Add a New User"
#~ msgstr "కొత్త వాడుకరిని చేర్చు"
-# మొదటి అనువాదము
#~ msgid "Create User"
#~ msgstr "వాడుకరిని సృష్టించు"
-# మొదటి అనువాదము
#~ msgid "Add a new User"
#~ msgstr "క్రొత్త వాడుకరిని చేర్చు"
diff --git a/po/th.po b/po/th.po
index 2fff179ee5..1658974b58 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
@@ -14,12 +14,12 @@ msgstr ""
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "แสดงทั้งหมด"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -36,23 +36,23 @@ msgstr ""
"ไม่สามารถเปลี่ยนแปลงข้อมูลของหน้าต่างเป้าหมายได้ อาจเป็นเพราะว่าคุณปิดหน้าต่างหลัก "
"หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "ค้นหา"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -69,7 +69,7 @@ msgstr "ค้นหา"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -82,7 +82,7 @@ msgstr "ชื่อคีย์"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "รายละเอียด"
@@ -133,7 +133,7 @@ msgstr "หมายเหตุของตาราง"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -148,7 +148,7 @@ msgstr "ชื่อคอลัมน์"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "ชนิด"
@@ -164,7 +164,7 @@ msgstr "ชนิด"
msgid "Null"
msgstr "ว่างเปล่า (null)"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -193,7 +193,7 @@ msgstr "เชื่อมไปยัง"
msgid "Comments"
msgstr "หมายเหตุ"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -204,12 +204,12 @@ msgstr "หมายเหตุ"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "ไม่"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -224,7 +224,7 @@ msgstr "ไม่"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -243,11 +243,11 @@ msgstr "ดูโครงสร้างของฐานข้อมูล"
msgid "No tables found in database."
msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "เลือกทั้งหมด"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "ไม่เลือกเลย"
@@ -269,7 +269,7 @@ msgstr "คัดลอกฐานข้อมูล %s ไปเก็บใ
msgid "Rename database to"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "คำสั่ง"
@@ -330,7 +330,7 @@ msgstr "สลับไปยังฐานข้อมูลที่ถูก
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -353,7 +353,7 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "ตาราง "
@@ -369,7 +369,7 @@ msgstr "แถว"
msgid "Size"
msgstr "ขนาด"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "ใช้อยู่"
@@ -395,7 +395,7 @@ msgstr "ปรับปรุงครั้งสุดท้ายเมื่
msgid "Last check"
msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -416,25 +416,25 @@ msgid "visual builder"
msgstr "ตัวสร้างแบบวิชวล"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "เรียง"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "น้อยไปมาก"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "มากไปน้อย"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "แสดง"
@@ -457,7 +457,7 @@ msgstr "ลบ"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "หรือ"
@@ -490,39 +490,39 @@ msgstr "ใช้ตาราง"
msgid "SQL query on database %s :"
msgstr "คำค้นบนฐานข้อมูล %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "ไม่อนุญาตให้ใช้งาน"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "อย่างน้อยหนึ่งคำ"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "ทุกคำ"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "เหมือนทั้งวลี"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "รูปแบบคำพ้อง (regular expression)"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "ผลการค้นหา \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -530,20 +530,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s "
msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "เปิดดู"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "dump ตาราง"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -554,7 +554,7 @@ msgstr "dump ตาราง"
msgid "Delete"
msgstr "ลบ"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -562,170 +562,170 @@ msgid_plural "Total: %s matches"
msgstr[0] "รวม: %s ผลลัพธ์ที่ตรง"
msgstr[1] "รวม: %s ผลลัพธ์ที่ตรง"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "ค้นหาในฐานข้อมูล"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "ค้น:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "ในตาราง:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "ในคอลัมน์:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "การติดตามเริ่มทำงานแล้ว"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "หยุดการติดตามแล้ว"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "วิว"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "ผลรวม"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น"
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "ทำกับที่เลือก:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "เลือกทั้งหมด"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "ไม่เลือกเลย"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "ตรวจสอบตารางที่มี overhead"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ส่งออก"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "แสดง"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "ลบข้อมูล"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "โยนทิ้ง"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "ตรวจสอบตาราง"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "ปรับแต่งตาราง"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "ซ่อมแซมตาราง"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "วิเคราะห์ตาราง"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "เขียนทับด้วยข้อมูลจากไฟล์"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "เขียนทับด้วยข้อมูลจากไฟล์"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "พจนานุกรมข้อมูล"
@@ -740,9 +740,9 @@ msgstr "ตารางที่ถูกติดตาม"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "ฐานข้อมูล"
@@ -759,8 +759,8 @@ msgstr "สร้าง"
msgid "Updated"
msgstr "ปรับปรุงแล้ว"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "สถานะ"
@@ -894,7 +894,7 @@ msgstr "ลบคำค้นที่จดไว้เรียบร้อย
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -917,7 +917,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -943,15 +943,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้"
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "ต้องการจะ "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1049,180 +1049,222 @@ msgstr "ถอนผู้ใช้ที่เลือก"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "ตัวเลือกเซิร์ฟเวอร์"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "คำค้น SQL"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "รวม"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "โลคอล"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "โพรเซส"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-
-#: js/messages.php:93
-#, fuzzy
-msgid "Copying Database"
-msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "ชุดตัวอักษร"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "You have to choose at least one column to display"
-msgid "Table must have at least one column"
-msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
-
-#: js/messages.php:96
-#, fuzzy
-msgid "Create Table"
-msgstr "เริ่มหน้าใหม่"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "ใช้ตาราง"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "ค้นหา"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "คำค้น SQL"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "คำค้น SQL"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "เปิดดู"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "กำลังลบ %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "คำค้น SQL"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "คำค้น SQL"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr ""
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "แก้ไข"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "ตัวเลือกเซิร์ฟเวอร์"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "คำค้น SQL"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "รวม"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "ตัวเลือกเซิร์ฟเวอร์"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "โพรเซส"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "การเชื่อมต่อ"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "คำค้น SQL"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "สถิติของแถว"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "โลคอล"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "โพรเซส"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
+
+#: js/messages.php:106
+#, fuzzy
+msgid "Copying Database"
+msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "ชุดตัวอักษร"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "You have to choose at least one column to display"
+msgid "Table must have at least one column"
+msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
+
+#: js/messages.php:109
+#, fuzzy
+msgid "Create Table"
+msgstr "เริ่มหน้าใหม่"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "ใช้ตาราง"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "ค้นหา"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "คำค้น SQL"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "คำค้น SQL"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "เปิดดู"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "กำลังลบ %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "คำค้น SQL"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "คำค้น SQL"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr ""
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1230,78 +1272,78 @@ msgstr "แก้ไข"
msgid "Save"
msgstr "บันทึก"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "คำค้น SQL"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "คำค้น SQL"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "ไม่สนใจ"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "เลือกฟิลด์ที่ต้องการแสดง"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "เปลี่ยนรหัสผ่าน"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "สร้างโดย"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "เปลี่ยนรหัสผ่าน"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "จ."
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1309,128 +1351,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "ไม่มีฐานข้อมูล"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ไม่มี"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "ก่อนหน้า"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "ต่อไป"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "รวม"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " ข้อมูลไบนารี "
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "มี.ค."
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "เม.ย."
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "พ.ค."
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "มิ.ย."
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ก.ค."
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ส.ค."
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ต.ค."
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "ม.ค."
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "ก.พ."
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "มี.ค."
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "เม.ย."
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1438,176 +1480,176 @@ msgid "May"
msgstr "พ.ค."
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "มิ.ย."
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "ก.ค."
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "ส.ค."
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "ก.ย."
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "ต.ค."
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "พ.ย."
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "ธ.ค."
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "อา."
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "จ."
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "อ."
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "ศ."
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "อา."
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "จ."
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "อ."
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "พ."
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "พฤ."
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "ศ."
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "ส."
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "อา."
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "จ."
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "อ."
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "พ."
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "พฤ."
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "ศ."
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "ส."
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ใช้อยู่"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1699,7 +1741,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "ฐานข้อมูล"
@@ -1768,25 +1810,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1818,10 +1860,9 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "หน้าตา"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1829,7 +1870,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s ยินดีต้อนรับ"
@@ -1972,7 +2012,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "ตาราง"
@@ -2055,7 +2095,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "เซิร์ฟเวอร์"
@@ -2103,7 +2142,7 @@ msgid "Documentation"
msgstr "เอกสารอ้างอิง"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "คำค้น SQL"
@@ -2111,119 +2150,119 @@ msgstr "คำค้น SQL"
msgid "MySQL said: "
msgstr "MySQL แสดง: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "อธิบาย SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "ไม่ต้องอธิบาย SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "ไม่เอาโค้ด PHP"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "สร้างโค้ด PHP"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "เรียกใหม่"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "ไม่ต้องตรวจสอบ SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "ตรวจสอบ SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "ไบต์"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "กิโลไบต์"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "เมกกะไบต์"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "กิกะไบต์"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "เทอราไบต์"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "เพตตะไบต์"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "เอกซะไบต์"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y %Rน."
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "จุดเริ่มต้น"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "ก่อนหน้า"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "ท้ายสุด"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "กระโดดไปที่ฐานข้อมูล "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2235,42 +2274,42 @@ msgstr ""
msgid "Structure"
msgstr "โครงสร้าง"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "แทรก"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "กระบวนการ"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2628,7 +2667,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4597,7 +4636,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "สิทธิ"
@@ -4609,7 +4648,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4811,9 +4850,9 @@ msgstr "ชุดอักขระของไฟล์ (character set):"
msgid "Compression:"
msgstr "บีบอัดข้อมูล"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "ไม่มี"
@@ -4948,39 +4987,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "แถว เริ่มจากแถวที่"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "แนวนอน"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "แนวนอน (หมุนหัวเรื่อง)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "แนวตั้ง"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "อยู่ใน %s และซ้ำหัวแถวทุกๆ %s เซลล์"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "เรียงโดยคีย์"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4993,104 +5050,104 @@ msgstr "เรียงโดยคีย์"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "กระบวนการ"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "ข้อความบางส่วน"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "ทั้งข้อความ"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "รีเลชันแนล สกีมา"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "รีเลชันแนล สกีมา"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
#, fuzzy
msgid "Browser transformation"
msgstr "การแปลงที่เรียกใช้ได้"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "ลบเรียบร้อยแล้ว"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "ฆ่าทิ้ง"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "ในคำค้น"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "แสดงระเบียนที่ "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "ทั้งหมด"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "คำค้นใช้เวลา %01.4f วินาที"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "เปลี่ยน"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "แสดงสกีมาของ PDF"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "ไม่พบลิงก์"
@@ -5136,7 +5193,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "สถานะของ InnoDB"
@@ -5602,7 +5659,7 @@ msgstr "MIME-types ที่มีอยู่"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "โฮสต์"
@@ -5810,7 +5867,7 @@ msgstr "ผลลัพธ์ SQL"
msgid "Generated by"
msgstr "สร้างโดย"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)."
@@ -5970,7 +6027,7 @@ msgstr ""
msgid "Add prefix"
msgstr "เพิ่มฟิลด์ใหม่"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "ไม่มีการเปลี่ยนแปลง"
@@ -6300,14 +6357,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "ตัวแปร"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "ค่า"
@@ -6546,21 +6603,21 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
#, fuzzy
msgid "Binary log"
msgstr " ข้อมูลไบนารี "
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "ตัวแปร"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "ชุดตัวอักษร"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6610,11 +6667,11 @@ msgstr "ปฏิทิน"
msgid "Columns"
msgstr "ชื่อคอลัมน์"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "จดคำค้นนี้ไว้"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6842,7 +6899,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "เพิ่มผู้ใช้ใหม่"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "เวลา"
@@ -7010,7 +7067,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "ผู้ใช้"
@@ -7279,7 +7336,7 @@ msgstr "สร้าง"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
#, fuzzy
msgid "Operator"
msgstr "กระบวนการ"
@@ -7470,18 +7527,18 @@ msgstr "ไม่มีตาราง \"%s\"!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "จำนวนฟิลด์"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "ตัดทอนคำค้นที่แสดง"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "แสดงคำค้นแบบเต็ม"
@@ -8004,7 +8061,7 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8143,265 +8200,249 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว."
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้."
-
-#: server_status.php:230
-msgid "Handler"
-msgstr ""
-
-#: server_status.php:231
-#, fuzzy
-msgid "Query cache"
-msgstr "ชนิดคำค้น"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr ""
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr ""
-
-#: server_status.php:235
-#, fuzzy
-msgid "Delayed inserts"
-msgstr "แทรกหลายระเบียนในคราวเดียว"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr ""
-
-#: server_status.php:237
-msgid "Joins"
-msgstr ""
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr ""
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr ""
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr ""
-
-#: server_status.php:254
-#, fuzzy
-msgid "Show open tables"
-msgstr "แสดงตาราง"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr ""
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "ข้อมูลรันไทม์"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "ตัวเลือกเซิร์ฟเวอร์"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "สถิติของแถว"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "เรียกใหม่"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "ต่อวินาที"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "ต่อวินาที"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "ใช้อยู่"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "ใช้อยู่"
+msgstr[1] "ใช้อยู่"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "ต่อวินาที"
+msgstr[1] "ต่อวินาที"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว."
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้."
+
+#: server_status.php:263
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:264
+#, fuzzy
+msgid "Query cache"
+msgstr "ชนิดคำค้น"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:268
+#, fuzzy
+msgid "Delayed inserts"
+msgstr "แทรกหลายระเบียนในคราวเดียว"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:270
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:287
+#, fuzzy
+msgid "Show open tables"
+msgstr "แสดงตาราง"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "ข้อมูลรันไทม์"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "ตัวเลือกเซิร์ฟเวอร์"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
msgid "Show only alert values"
msgstr "แสดงตาราง"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "รีเลชัน"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "ต่อชั่วโมง"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "ต่อนาที"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "ต่อวินาที"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "ชนิดคำค้น"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "การจราจร"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "ได้รับ"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "ถูกส่ง"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "การเชื่อมต่อ"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "ความพยายามล้มเหลว"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "ยกเลิก"
-#: server_status.php:778
-msgid "Processes"
-msgstr "โพรเซส"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8409,78 +8450,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8488,7 +8529,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8496,42 +8537,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8539,33 +8580,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8574,227 +8615,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8802,99 +8843,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8902,18 +8943,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8921,7 +8962,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -9044,7 +9085,7 @@ msgstr "ตัวแปร และค่ากำหนด ของเซิ
msgid "Session value"
msgstr "ค่าเซสชั่น"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "ค่าแบบโกลบอล"
@@ -9322,41 +9363,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "ตรวจสอบ SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "ป้ายชื่อ"
@@ -9740,25 +9781,25 @@ msgstr ""
msgid "No rows selected"
msgstr "ยังไม่ได้เลือกแถว"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "เพิ่มเงื่อนไขในการค้นหา:"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "ระเบียนต่อหน้า"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "ลำดับการแสดง:"
@@ -10055,12 +10096,15 @@ msgstr ""
msgid "Rename view to"
msgstr "เปลี่ยนชื่อตารางเป็น"
-#, fuzzy
-#~| msgid "SQL result"
+#~ msgid "Theme / Style"
+#~ msgstr "หน้าตา"
+
+#~ msgid "seconds"
+#~ msgstr "ต่อวินาที"
+
#~ msgid "Query results"
#~ msgstr "ผลลัพธ์ SQL"
-#, fuzzy
#~ msgctxt "$strShowStatusReset"
#~ msgid "Reset"
#~ msgstr "เริ่มใหม่"
@@ -10068,8 +10112,6 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
#~ msgid "Show processes"
#~ msgstr "แสดงงานที่ทำอยู่ของ MySQL"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "เริ่มใหม่"
@@ -10086,22 +10128,15 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
#~ "the server."
#~ msgstr "สถิติคำค้น : มี %s คำค้น ถูกส่งไปที่เซิร์ฟเวอร์ นับตั้งแต่เริ่มระบบ."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "ชนิดคำค้น"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "เพิ่มผู้ใช้ใหม่"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "รุ่นของเซิร์ฟเวอร์"
diff --git a/po/tr.po b/po/tr.po
index 94ce8a5294..6b42b0d52d 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,8 +3,8 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2011-06-08 16:30+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-16 21:00+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish \n"
"Language: tr\n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Tümünü göster"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"olabilirsiniz ya da tarayıcınızın güvenlik ayarları pencereler arası "
"güncellemeleri engellemek için yapılandırılmıştır."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Ara"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Ara"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Anahtar adı"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Açıklama"
@@ -137,7 +137,7 @@ msgstr "Tablo yorumları"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Sütun"
@@ -150,7 +150,7 @@ msgstr "Sütun"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Türü"
@@ -166,7 +166,7 @@ msgstr "Türü"
msgid "Null"
msgstr "Boş"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Bağlantı verilen"
msgid "Comments"
msgstr "Yorumlar"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Yorumlar"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Hayır"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Hayır"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Veritabanının dökümünü (şemasını) göster"
msgid "No tables found in database."
msgstr "Veritabanında tablo bulunamadı."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Tümünü Seç"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Tüm Seçimi Kaldır"
@@ -271,7 +271,7 @@ msgstr "%s veritabanı %s veritabanına kopyalandı"
msgid "Rename database to"
msgstr "Veritabanını şuna yeniden adlandır"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Komut"
@@ -332,7 +332,7 @@ msgstr "Kopyalanmış veritabanına geç"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -357,7 +357,7 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tablo"
@@ -373,7 +373,7 @@ msgstr "Satır"
msgid "Size"
msgstr "Boyut"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "kullanımda"
@@ -399,7 +399,7 @@ msgstr "Son güncellenme"
msgid "Last check"
msgstr "Son kontrol"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -418,25 +418,25 @@ msgid "visual builder"
msgstr "görsel yaratıcı"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sırala"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Küçükten Büyüğe"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Büyükten Küçüğe"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Göster"
@@ -459,7 +459,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Veya"
@@ -488,57 +488,57 @@ msgstr "Tabloları kullan"
msgid "SQL query on database %s :"
msgstr "%s veritabanındaki SQL sorgusu:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Sorguyu Gönder"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Erişim engellendi"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "kelimelerin en azından biri"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "tüm kelimeler"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "kesin ifade"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "kurallı ifade olarak"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"%s \" %s için arama sonuçları:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s benzeşme, %s tablosu içinde"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Gözat"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "%s tablosu için benzeşenler silinsin mi?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -549,64 +549,64 @@ msgstr "%s tablosu için benzeşenler silinsin mi?"
msgid "Delete"
msgstr "Sil"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Toplam: %s benzeşme"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Veritabanında ara"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Aranacak kelime(ler) veya değer(ler) (joker: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Bul:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Kelimeler boşlukla ayrılır (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Tablo içindeki(ler):"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "İç sütun:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "Veritabanında tablolar bulunamadı"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "%s tablosu boşaltıldı"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "%s görünümü kaldırıldı"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "%s tablosu kaldırıldı"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "İzleme aktif."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "İzleme aktif değil."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -614,106 +614,106 @@ msgid ""
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Görünüm"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Kopya Etme"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Toplam"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Seçilileri:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Tümünü Seç"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Hiçbirini Seçme"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Ek yükü olan tabloları kontrol et"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Dışa Aktar"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Baskı görünümü"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Boşalt"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Kaldır"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Tabloyu kontrol et"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Tabloyu uyarla"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Tabloyu onar"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Tabloyu incele"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "Tabloya ön ek ekle"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "Tablo ön ekini değiştir"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "Tabloyu ön eki ile kopyala"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Veri sözlüğü"
@@ -728,9 +728,9 @@ msgstr "İzlenen tablolar"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Veritabanı"
@@ -746,8 +746,8 @@ msgstr "Oluşturuldu"
msgid "Updated"
msgstr "Güncellendi"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Durum"
@@ -890,7 +890,7 @@ msgstr "İşaretleme silindi."
msgid "Showing bookmark"
msgstr "Gösterilen işaret"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "İşaretleme %s oluşturuldu"
@@ -918,7 +918,7 @@ msgstr ""
"biteremeyeceği anlamına gelir."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -945,15 +945,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:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Şu komut uygulansın "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!"
@@ -963,7 +963,7 @@ msgstr "Bütün bir tabloyu YOK ETMEK üzeresiniz!"
#: js/messages.php:33
msgid "You are about to TRUNCATE a complete table!"
-msgstr "Bütün bir tabloyu KESMEK üzeresiniz!"
+msgstr "Bütün bir tabloyu KESMEK üzeresiniz!"
#: js/messages.php:34
msgid "Dropping Event"
@@ -1006,10 +1006,8 @@ msgstr "Bu bir sayı değil!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:51
-#, fuzzy
-#| msgid "Log file count"
msgid "Total count"
-msgstr "Günlük dosyası sayısı"
+msgstr "Toplam sayı"
#: js/messages.php:54
msgid "The host name is empty!"
@@ -1045,158 +1043,196 @@ msgstr "Seçili Kullanıcılar Kaldırılıyor"
msgid "Close"
msgstr "Kapat"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
+#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
+#: setup/frames/index.inc.php:137
+msgid "Edit"
+msgstr "Düzenle"
+
+#: js/messages.php:66 server_status.php:416
msgid "Live traffic chart"
-msgstr "Sunucu Seçimi"
+msgstr "Canlı trafik çizelgesi"
-#: js/messages.php:65 server_status.php:396
+#: js/messages.php:67 server_status.php:419
msgid "Live conn./process chart"
-msgstr ""
+msgstr "Canlı bağ./işlem çizelgesi"
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
+#: js/messages.php:68 server_status.php:438
msgid "Live query chart"
-msgstr "Sorgu çizelgesini göster"
+msgstr "Canlı sorgu çizelgesi"
-#: js/messages.php:68
+#: js/messages.php:70
msgid "Static data"
-msgstr ""
+msgstr "Sabit veri"
#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
#: tbl_structure.php:790
msgid "Total"
msgstr "Toplam"
#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
+#: js/messages.php:74 server_status.php:595
msgid "Other"
-msgstr ""
+msgstr "Diğer"
#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
+#: js/messages.php:76 libraries/common.lib.php:1375
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
+#: js/messages.php:78 libraries/common.lib.php:1377
msgid "."
msgstr "."
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 pmd_general.php:388
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server traffic"
+msgid "Server traffic (in KiB)"
+msgstr "Sunucu trafiği"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "İşlemler"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Bağlantılar"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL sorguları"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Sorgu istatistikleri"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:83
+#: js/messages.php:96
msgid "Loading"
msgstr "Yükleniyor"
-#: js/messages.php:84
+#: js/messages.php:97
msgid "Processing Request"
msgstr "İstek İşleniyor"
-#: js/messages.php:85 libraries/import/ods.php:80
+#: js/messages.php:98 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "İstek İşlemede Hata"
-#: js/messages.php:86
+#: js/messages.php:99
msgid "Dropping Column"
msgstr "Sütun Kaldırılıyor"
-#: js/messages.php:87
+#: js/messages.php:100
msgid "Adding Primary Key"
msgstr "Birincil Anahtar Ekleniyor"
-#: js/messages.php:88 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:101 libraries/relation.lib.php:87 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:91
+#: js/messages.php:104
msgid "Renaming Databases"
msgstr "Veritabanı Yeniden Adlandırılıyor"
-#: js/messages.php:92
+#: js/messages.php:105
msgid "Reload Database"
msgstr "Veritabanını Yeniden Yükle"
-#: js/messages.php:93
+#: js/messages.php:106
msgid "Copying Database"
msgstr "Veritabanı Kopyalanıyor"
-#: js/messages.php:94
+#: js/messages.php:107
msgid "Changing Charset"
msgstr "Karakter Grubu Değiştiriliyor"
-#: js/messages.php:95
+#: js/messages.php:108
msgid "Table must have at least one column"
msgstr "Tablonun en az bir sütunu olmalı"
-#: js/messages.php:96
+#: js/messages.php:109
msgid "Create Table"
msgstr "Tablo Oluştur"
-#: js/messages.php:101
+#: js/messages.php:114
msgid "Insert Table"
msgstr "Tablo Ekle"
-#: js/messages.php:104
+#: js/messages.php:117
msgid "Searching"
msgstr "Aranıyor"
-#: js/messages.php:105
+#: js/messages.php:118
msgid "Hide search results"
msgstr "Arama sonuçlarını gizle"
-#: js/messages.php:106
+#: js/messages.php:119
msgid "Show search results"
msgstr "Arama sonuçlarını göster"
-#: js/messages.php:107
+#: js/messages.php:120
msgid "Browsing"
msgstr "Gözatılıyor"
-#: js/messages.php:108
+#: js/messages.php:121
msgid "Deleting"
msgstr "Siliniyor"
-#: js/messages.php:111
+#: js/messages.php:124
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:114
+#: js/messages.php:127
msgid "Hide query box"
msgstr "Sorgu kutusunu gizle"
-#: js/messages.php:115
+#: js/messages.php:128
msgid "Show query box"
msgstr "Sorgu kutusunu göster"
-#: js/messages.php:116
+#: js/messages.php:129
msgid "Inline Edit"
msgstr "Sıralı Düzenleme"
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
-#: setup/frames/index.inc.php:137
-msgid "Edit"
-msgstr "Düzenle"
-
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1204,41 +1240,41 @@ msgstr "Düzenle"
msgid "Save"
msgstr "Kaydet"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Gizle"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Arama kriterini gizle"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Arama kriterini göster"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Yoksay"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Kaynak gösterilen anahtarı seç"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Dış Anahtarı seç"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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?"
@@ -1246,27 +1282,27 @@ msgstr ""
"Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, "
"kaybolacaklardır. Devam etmek istiyor musunuz?"
-#: js/messages.php:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "Sütun için bir seçenek ekle "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Parola üret"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Üret"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Parola Değiştir"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Daha Fazla"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1276,258 +1312,258 @@ msgstr ""
"%s, %s tarihinde yayınlandı."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", son sağlam sürüm:"
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "güncel"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Bitti"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Önceki"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Sonraki"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Bugün"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Ocak"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Şubat"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Mart"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Nisan"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Mayıs"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Haziran"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Temmuz"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Ağustos"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Eylül"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Ekim"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Kasım"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Aralık"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Oca"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Şub"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Eyl"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Eki"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Ara"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Pazar"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Pazartesi"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Salı"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "Çarşamba"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "Perşembe"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "Cuma"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "Cumartesi"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Sal"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Cum"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Ctesi"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Pz"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Pt"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Ça"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Cu"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Ct"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "Hs"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "Saat"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Dakika"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Saniye"
@@ -1623,7 +1659,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Veritabanları"
@@ -1684,25 +1720,25 @@ msgstr "%s bu MySQL sunucusu için etkisizleştirildi."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Geçersiz veritabanı"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Geçersiz tablo adı"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "%s tablosu %s olarak yeniden adlandırıldı"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "Tablo KA tercihleri kaydedilemedi"
@@ -1734,10 +1770,9 @@ msgstr "%s teması bulunamadı!"
msgid "Theme path not found for theme %s!"
msgstr "%s teması için tema yolu bulunamadı!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tema / Stil"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1745,7 +1780,6 @@ msgstr "Bağlanamıyor: geçersiz ayarlar."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s'e Hoş Geldiniz"
@@ -1898,7 +1932,7 @@ msgstr "paylaşılmış"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tablolar"
@@ -1984,7 +2018,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Sunucu"
@@ -2032,7 +2065,7 @@ msgid "Documentation"
msgstr "Belgeler"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL sorgusu"
@@ -2040,119 +2073,119 @@ msgstr "SQL sorgusu"
msgid "MySQL said: "
msgstr "MySQL çıktısı: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "SQL onaylayıcısına bağlanma başarısız oldu!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL'i açıkla"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL Açıklamasını atla"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP Kodsuz"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP Kodu oluştur"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Yenile"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL Onaylamayı atla"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL'i onayla"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Bu sorguyu sıralı düzenle"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "Sıralı"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profil çıkart"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EiB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M:%S"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s dakika ve %s saniye"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Yukarı"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Önceki"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Son"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" veritabanına git."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2164,41 +2197,41 @@ msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakını
msgid "Structure"
msgstr "Yapı"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Ekle"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "İşlemler"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "Bilgisayarınıza gözat:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Web sunucusu gönderme dizininden %s seçin:"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "Göndermek için hiç dosya yok"
@@ -2559,7 +2592,7 @@ msgstr "Varsayılan tablo sekmesi"
msgid "Show binary contents as HEX by default"
msgstr "Binari içerikleri varsayılandan HEX olarak göster"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Binari içerikleri HEX olarak göster"
@@ -4610,7 +4643,7 @@ msgstr "Tasarımcı"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Yetkiler"
@@ -4622,7 +4655,7 @@ msgstr "Yordamlar"
msgid "Return type"
msgstr "Dönüş türü"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4809,9 +4842,9 @@ msgstr "Dosyanın karakter grubu:"
msgid "Compression:"
msgstr "Sıkıştırma:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Yok"
@@ -4944,37 +4977,53 @@ msgstr "Biçim-Belirli Seçenekler:"
msgid "Language"
msgstr "Dil"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr "Sütun düzenini geri yükle"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr "Yen.düzenleme için sürükle"
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr "Sıralamak için tıklayın"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr "İşaretlemek/işareti kaldırmak için tıklayın"
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d geçerli bir satır sayısı değil."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "satır, başlayacağı satır numarası"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "yatay"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "yatay (döndürülmüş başlıklar)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "dikey"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s kipinde ve %s hücre sonra başlığı tekrarla"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Anahtara göre sırala"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4987,92 +5036,92 @@ msgstr "Anahtara göre sırala"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Seçenekler"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "Kısmi metinler"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "Tam metinler"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Bağlantılı anahtar"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "Bağlantılı görüntü sütunu"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Binari içerikleri göster"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "BLOB içerikleri göster"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Tarayıcı dönüşümü"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "Kopyala"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Satır silindi"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Sonlandır"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "sorgu içerisinde"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Gösterilen satırlar"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "toplam"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Sorgu %01.4f san. sürdü"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Değiştir"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Sorgu sonuçları işlemleri"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Baskı görünümü (tüm metinler ile)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "Çizelge göster"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "Görünüm oluştur"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Bağlantı bulunamadı"
@@ -5120,7 +5169,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Ara Bellek Havuzu"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Durumu"
@@ -5624,7 +5673,7 @@ msgstr "MIME türlerini göster"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Anamakine"
@@ -5849,7 +5898,7 @@ msgstr "SQL sonucu"
msgid "Generated by"
msgstr "Üreten:"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6011,7 +6060,7 @@ msgstr "Tablo ön eki ekle"
msgid "Add prefix"
msgstr "Ön ek ekle"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Değişiklik yok"
@@ -6345,14 +6394,14 @@ msgid "Slave status"
msgstr "Slave durumu"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Değişken"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Değer"
@@ -6580,20 +6629,20 @@ msgid "Synchronize"
msgstr "Eşitle"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binari günlüğü"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Değişkenler"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Karakter Grupları"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Motorlar"
@@ -6638,11 +6687,11 @@ msgstr "Temizle"
msgid "Columns"
msgstr "Sütun"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorgusunu işaretle"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
@@ -6868,7 +6917,7 @@ msgstr "PARTITION tanımı"
msgid "+ Add a new value"
msgstr "+ Yeni bir değer ekle"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Süre"
@@ -7067,7 +7116,7 @@ msgid "Protocol version"
msgstr "Protokol sürümü"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Kullanıcı"
@@ -7338,7 +7387,7 @@ msgstr "Topla"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "İşletici"
@@ -7516,17 +7565,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:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Dosyalar"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Gösterilen Sorguları Kısalt"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Tüm Sorguları Göster"
@@ -8051,7 +8100,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Master durumunu göster"
@@ -8201,177 +8250,152 @@ 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:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr "Oranı yenile"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "minutes"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "dakika"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "saniye"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s işlemi başarılı olarak sonlandırıldı."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Denetimci"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "Sorgu önbelleği"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "İşlemler"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Geçici veri"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Gecikmiş eklemeler"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Anahtar önbelleği"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Birleştirmeler"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sıralama"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "İşlem koordinatörü"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Tüm tabloları temizle (kapat)"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Açık tabloları göster"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Slave anamakineleri göster"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Slave durumunu göster"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "Sorgu önbelleğini temizle"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Çalışma Süresi Bilgisi"
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
+#: server_status.php:400
msgid "Server traffic"
-msgstr "Sunucu Seçimi"
+msgstr "Sunucu trafiği"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Sorgu istatistikleri"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
+#: server_status.php:402
msgid "All status variables"
-msgstr "Slave durum tablosuna bak"
+msgstr "Tüm durum değişkenleri"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Yenile"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Saniye"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Saniye"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Dakika"
-
-#: server_status.php:440
-#, fuzzy
-#| msgid "Do not change the password"
+#: server_status.php:455
msgid "Containing the word:"
-msgstr "Parolayı değiştirme"
+msgstr "İçerdiği kelime:"
-#: server_status.php:445
-#, fuzzy
-#| msgid "Show open tables"
+#: server_status.php:460
msgid "Show only alert values"
-msgstr "Açık tabloları göster"
+msgstr "Sadece uyarı değerlerini göster"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
-msgstr ""
+msgstr "Kategoriye göre süz..."
-#: server_status.php:462
-#, fuzzy
-#| msgid "Related Links"
+#: server_status.php:477
msgid "Related links:"
-msgstr "İlgili Bağlantılar"
+msgstr "İlgili bağlantılar:"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "saat başına"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "dakika başına"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "saniye başına"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Sorgu türü"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
-msgstr ""
+msgstr "#"
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Başlangıçtan bu yana ağ trafiği: %s"
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Bu MySQL sunucusunun çalışma süresi: %s. Başlatıldığı zaman: %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -8379,35 +8403,35 @@ msgstr ""
"Bu MySQL sunucusu kopya etme işlemi sırasında master ve "
"slave olarak çalışır."
-#: server_status.php:629
+#: server_status.php:638
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:631
+#: server_status.php:640
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:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Kopya etme durumu"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8415,45 +8439,39 @@ 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:665
+#: server_status.php:674
msgid "Received"
msgstr "Alınan"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Gönderilen"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Bağlantılar"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "En fazla eşzamanlı bağlantı"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Başarısız deneme"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "İptal edilen"
-#: server_status.php:778
-msgid "Processes"
-msgstr "İşlemler"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
-#, fuzzy
-#| msgid "Whether to enable SSL for connection to MySQL server."
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
-msgstr "MySQL sunucusuna bağlanmak için SSL etkinleştirmek."
+msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısı."
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8463,16 +8481,16 @@ msgstr ""
"binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici "
"dosya kullandı."
-#: server_status.php:842
+#: server_status.php:851
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:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
-msgstr ""
+msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısı."
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8484,11 +8502,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:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -8496,7 +8514,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:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8504,7 +8522,7 @@ msgstr ""
"INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır "
"sayısı (muhtemelen kopya anahtar)."
-#: server_status.php:848
+#: server_status.php:857
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -8512,23 +8530,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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED satır yazımı sayısıdır."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Dahili COMMIT ifadesi sayısıdır."
-#: server_status.php:852
+#: server_status.php:861
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:853
+#: server_status.php:862
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 "
@@ -8538,7 +8556,7 @@ msgstr ""
"motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez "
"keşfedildiğini gösterir."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8548,7 +8566,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:855
+#: server_status.php:864
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."
@@ -8557,7 +8575,7 @@ msgstr ""
"sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi "
"olduğu belirtisidir."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -8567,7 +8585,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:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8575,7 +8593,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:858
+#: server_status.php:867
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 "
@@ -8588,7 +8606,7 @@ msgstr ""
"fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları "
"kullanmamaktasınız."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8600,35 +8618,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:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "Dahili ROLLBACK ifadesi sayısıdır."
-#: server_status.php:861
+#: server_status.php:870
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:862
+#: server_status.php:871
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:863
+#: server_status.php:872
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:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "Şu anki dolu sayfa sayısıdır."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Temizlenmesi için istenmiş ara bellek havuz sayfa sayısıdır."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Boş sayfa sayısıdır."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8638,7 +8656,7 @@ msgstr ""
"okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya "
"taşınamayan sayfalardır."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8650,11 +8668,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:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Sayfalardaki ara bellek havuzunun toplam boyutudur."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8662,7 +8680,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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -8670,11 +8688,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:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -8682,7 +8700,7 @@ msgstr ""
"InnoDB'nin ara bellek havuzundan tatmin olamadığı ve tek-sayfa okuması "
"yapmak zorunda olduğu mantıksal okuma sayısıdır."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -8696,55 +8714,55 @@ msgstr ""
"durumlarını sayar. Eğer ara bellek havuzu boyutu düzgün bir şekilde "
"ayarlandıysa, bu değer küçük olmalıdır."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB ara bellek havuzuna bitti yazma sayısıdır."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Şimdiye kadarki fsync() işlem sayısıdır."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Şu anki bekleyen fsync() işlem sayısıdır."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Şu anki bekleyen okuma sayısıdır."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Şu anki bekleyen yazma sayısıdır."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Toplam veri okuma sayısıdır."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Toplam veri yazma sayısıdır."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır."
-#: server_status.php:884
+#: server_status.php:893
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:885
+#: server_status.php:894
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:886
+#: server_status.php:895
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."
@@ -8752,35 +8770,35 @@ msgstr ""
"Sahip olunan bekleme sayısıdır çünkü günlük ara belleği çok küçük ve devam "
"etmeden önce temizlenmesi için beklemek zorundayız."
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Günlük yazma isteği sayısıdır."
-#: server_status.php:888
+#: server_status.php:897
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:889
+#: server_status.php:898
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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "Bekleyen günlük dosyası fsyncs sayısıdır."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Bekleyen günlük dosyası yazma sayısıdır."
-#: server_status.php:892
+#: server_status.php:901
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:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Oluşturulmuş sayfa sayısıdır."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8788,52 +8806,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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Okunan sayfa sayısıdır."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Yazılmış sayfa sayısıdır."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Şu anki beklenen satır kilidi sayısıdır."
-#: server_status.php:898
+#: server_status.php:907
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:899
+#: server_status.php:908
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:900
+#: server_status.php:909
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:901
+#: server_status.php:910
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:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB tablolarından silinen satır sayısıdır."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB tablolarına eklenen satır sayısıdır."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB tablolarından okunan satır sayısıdır."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB tablolarında güncellenen satır sayısıdır."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -8841,7 +8859,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:907
+#: server_status.php:916
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."
@@ -8850,7 +8868,7 @@ msgstr ""
"önbelleğinin ne kadarının kullanımda olmasını belirlemek için "
"kullanabilirsiniz."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -8859,11 +8877,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:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -8873,15 +8891,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:911
+#: server_status.php:920
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:912
+#: server_status.php:921
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:913
+#: server_status.php:922
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 "
@@ -8892,17 +8910,19 @@ 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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
+"Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla "
+"bağlantı sayısı."
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -8910,38 +8930,41 @@ 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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Açık olan dosya sayısıdır."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Açık olan tablo sayısıdır."
-#: server_status.php:920
+#: server_status.php:929
msgid ""
"The number of free memory blocks in query cache. High numbers can indicate "
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
msgstr ""
+"Sorgu önbelleğinde boş bellek blokları sayısıdır. Yüksek sayılar, FLUSH "
+"QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret "
+"edebilir."
-#: server_status.php:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Sorgu önbelleği için boş bellek miktarıdır."
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Önbelleğe ulaşma sayısıdır."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Önbelleğe eklenen sorgu sayısıdır."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8953,7 +8976,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:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8961,19 +8984,19 @@ msgstr ""
"Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type "
"ayarından dolayı önbelleklenmedi)."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Önbellekte kayıtlı sorgu sayısıdır."
-#: server_status.php:927
+#: server_status.php:936
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:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8981,11 +9004,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:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -8994,7 +9017,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:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9002,15 +9025,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:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9018,11 +9041,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:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9030,12 +9053,12 @@ msgstr ""
"Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem "
"sayısıdır."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9045,23 +9068,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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Aralıklarla yapılmış sıralama sayısıdır."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Sıralanmış satır sayısıdır."
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9073,7 +9096,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:945
+#: server_status.php:954
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 "
@@ -9083,11 +9106,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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Şu anki açık bağlantı sayısıdır."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9099,7 +9122,7 @@ msgstr ""
"(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer "
"bir performans artışı vermez.)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Hala faaliyette olan işlemler sayısıdır."
@@ -9222,7 +9245,7 @@ msgstr "Sunucu değişkenleri ve ayarları"
msgid "Session value"
msgstr "Oturum değeri"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Genel değer"
@@ -9546,39 +9569,39 @@ msgstr "Anahtar çok kısa, en az 8 karakter olmalıdır"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir."
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Dış değerlere gözat"
-#: sql.php:170
+#: sql.php:181
#, 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:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Eklenen satır id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP kodu olarak gösteriliyor"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "SQL sorgusu gösteriliyor"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "Oanylı SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Etiket"
@@ -9660,10 +9683,8 @@ msgid "Line"
msgstr "Satır"
#: tbl_chart.php:88
-#, fuzzy
-#| msgid "Inline"
msgid "Spline"
-msgstr "Sıralı"
+msgstr "Şerit"
#: tbl_chart.php:89
msgid "Pie"
@@ -9674,50 +9695,36 @@ msgid "Stacked"
msgstr "İstiflendi"
#: tbl_chart.php:94
-#, fuzzy
-#| msgid "Report title:"
msgid "Chart title"
-msgstr "Rapor başlığı:"
+msgstr "Çizelge başlığı"
#: tbl_chart.php:99
msgid "X-Axis:"
-msgstr ""
+msgstr "X-Ekseni:"
#: tbl_chart.php:113
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series:"
-msgstr "SQL sorguları"
+msgstr "Dizi:"
#: tbl_chart.php:115
-#, fuzzy
-#| msgid "Textarea columns"
msgid "The remaining columns"
-msgstr "Metin alanı sütunları"
+msgstr "Kalan sütunlar"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "X Axis label"
msgid "X-Axis label:"
-msgstr "X Ekseni etiketi"
+msgstr "X-Ekseni etiketi:"
#: tbl_chart.php:128
-#, fuzzy
-#| msgid "Value"
msgid "X Values"
-msgstr "Değer"
+msgstr "X Değeri"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Y Axis label"
msgid "Y-Axis label:"
-msgstr "Y Ekseni etiketi"
+msgstr "Y-Ekseni etiketi:"
#: tbl_chart.php:129
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Değer"
+msgstr "Y Değeri"
#: tbl_create.php:56
#, php-format
@@ -9959,23 +9966,23 @@ msgstr "Dış anahtar kısıtlaması"
msgid "No rows selected"
msgstr "Satır seçilmedi"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Örnek sorgu\" yap. (joker: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "Sütunları seç (en az bir):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Sayfa başına satır sayısı"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Görünüm düzeni:"
@@ -10259,6 +10266,12 @@ msgstr "GÖRÜNÜM adı"
msgid "Rename view to"
msgstr "Görünümü yeniden şuna adlandır"
+#~ msgid "Theme / Style"
+#~ msgstr "Tema / Stil"
+
+#~ msgid "seconds"
+#~ msgstr "saniye"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "Sorgu işletim süresi karşılaştırması (mikro saniye olarak)"
diff --git a/po/tt.po b/po/tt.po
index 8d673e3bbe..82f4d818d9 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: tatarish \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Barısın kürsät"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp "
"tora."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Ezläw"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Ezläw"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Tezeş adı"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Açıqlama"
@@ -135,7 +135,7 @@ msgstr "Tüşämä açıqlaması"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -150,7 +150,7 @@ msgstr "Alan iseme"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Töre"
@@ -166,7 +166,7 @@ msgstr "Töre"
msgid "Null"
msgstr "Buş"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "Bonı belän bäyläneş:"
msgid "Comments"
msgstr "Açıqlama"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "Açıqlama"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Yuq"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "Yuq"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "Biremlek eçtälegen (tözeleşen) çığaru"
msgid "No tables found in database."
msgstr "Bu biremlektä ber genä dä tüşämä yuq."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Saylap Beter"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Saylanunı Töşer"
@@ -271,7 +271,7 @@ msgstr "Database %s has been copied to %s"
msgid "Rename database to"
msgstr "Biremlekne bolay atap quy"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Ämer"
@@ -335,7 +335,7 @@ msgstr "Kübäytelgän biremlekkä küçäse"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -365,7 +365,7 @@ msgstr "Bäyläneşlär sxeme"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Tüşämä"
@@ -381,7 +381,7 @@ msgstr "Kerem"
msgid "Size"
msgstr "Küläme"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "totıla"
@@ -407,7 +407,7 @@ msgstr "Soñğı yañartılu"
msgid "Last check"
msgstr "Soñğı tikşerü"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -427,25 +427,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Tezü"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Artıp"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Kimep"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Kürsät"
@@ -468,7 +468,7 @@ msgstr "Sal"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Yä"
@@ -501,59 +501,59 @@ msgstr "Tüşämä qullanıp"
msgid "SQL query on database %s :"
msgstr "%s biremlegenä SQL-soraw:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Sorawnı Yulla"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "İreşep Bulmadı"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "berärse bulsa"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "barısı da bulsa"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "tulı tezmä, tögäl kileş"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "regexp kileş"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"%s \" ezläw näticäse %s:"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s kileşü bar, %s atlı tüşämädä"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Küzätü"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "Tüşämä eçtälegen çığaru"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -564,181 +564,181 @@ msgstr "Tüşämä eçtälegen çığaru"
msgid "Delete"
msgstr "Sal"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Tulayım: %s kileşü"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Biremlektä ezläw: "
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Ezläw:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Kiläse tüşämä eçendä:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside column:"
msgstr "Kiläse tüşämä eçendä:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Bu biremlektä ber genä dä tüşämä yuq."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "\"%s\" atlı tüşämä buşatıldı"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "\"%s\" atlı Qaraş beterelgän buldı"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "\"%s\" atlı tüşämä beterelde"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Qaraş"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
#, fuzzy
msgid "Replication"
msgstr "Bäyläneşlär"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Sum"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Saylanğannı:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Saylap Beter"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Saylanunı Töşer"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Check overheaded"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Bastıru küreneşe"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Buşat"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Beter"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Tüşämä tikşerü"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Optimize table"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Tüşämä tözätü"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Tüşämä centekläw"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
msgid "Add prefix to table"
msgstr "Biremleklär yuq"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Eçtälek Süzlege"
@@ -754,9 +754,9 @@ msgstr "Tüşämä tikşerü"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Biremlek"
@@ -774,8 +774,8 @@ msgstr "Yarat"
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Torış"
@@ -916,7 +916,7 @@ msgstr "Tamğa beterelde."
msgid "Showing bookmark"
msgstr "Bitbilge kürsätü"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "%s digän bitbilge yaratıldı"
@@ -939,7 +939,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -965,15 +965,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" cönläläre sünderelgän."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Sin çınlap ta bonı eşlärgä teliseñme: "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
@@ -1076,183 +1076,225 @@ msgstr "Saylanğan qullanuçı beterü"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Server Saylaw"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-msgid "Live query chart"
-msgstr "SQL-soraw"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Tulayım"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-msgid "Loading"
-msgstr "Cirle"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Proseslar"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Biremlekne bolay atap quy"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Biremlekne bolay atap quy"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Biremlekne boña kübäyt"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Bilgelämä"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-msgid "Create Table"
-msgstr "Yaña Bit yaratu"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Tüşämä qullanıp"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Ezläw"
-
-#: js/messages.php:105
-#, fuzzy
-msgid "Hide search results"
-msgstr "SQL-soraw"
-
-#: js/messages.php:106
-#, fuzzy
-msgid "Show search results"
-msgstr "SQL-soraw"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Küzätü"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "\"%s\" Beterü"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-msgid "Hide query box"
-msgstr "SQL-soraw"
-
-#: js/messages.php:115
-#, fuzzy
-msgid "Show query box"
-msgstr "SQL-soraw"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Engine"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tözätü"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Server Saylaw"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+msgid "Live query chart"
+msgstr "SQL-soraw"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Tulayım"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Server Saylaw"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Proseslar"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Totaşular"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+msgid "Issued queries"
+msgstr "SQL-soraw"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+msgid "Query statistics"
+msgstr "Kerem Nöfüse"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+msgid "Loading"
+msgstr "Cirle"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Proseslar"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Biremlekne bolay atap quy"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Biremlekne bolay atap quy"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Biremlekne boña kübäyt"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Bilgelämä"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+msgid "Create Table"
+msgstr "Yaña Bit yaratu"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Tüşämä qullanıp"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Ezläw"
+
+#: js/messages.php:118
+#, fuzzy
+msgid "Hide search results"
+msgstr "SQL-soraw"
+
+#: js/messages.php:119
+#, fuzzy
+msgid "Show search results"
+msgstr "SQL-soraw"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Küzätü"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "\"%s\" Beterü"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+msgid "Hide query box"
+msgstr "SQL-soraw"
+
+#: js/messages.php:128
+#, fuzzy
+msgid "Show query box"
+msgstr "SQL-soraw"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Engine"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1260,77 +1302,77 @@ msgstr "Tözätü"
msgid "Save"
msgstr "Saqla"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-soraw"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-soraw"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Qarama"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Sersüz Ürçetü"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Ürçet"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Sersüz üzgärtü"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dşm"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1338,128 +1380,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
msgid ", latest stable version:"
msgstr "Server söreme"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
msgid "up to date"
msgstr "Biremleklär yuq"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
msgid "Done"
msgstr "Eçtälek"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Uzğan"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Kiläse"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Tulayım"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Äpr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "May"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Yün"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Yül"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Ökt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Ğın"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Äpr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1467,176 +1509,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Yün"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Yül"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Ökt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Nöy"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ykş"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dşm"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sşm"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cmğ"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Ykş"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Dşm"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Sşm"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Çrş"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Pnc"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Cmğ"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Şmb"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ykş"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dşm"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sşm"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çrş"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pnc"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cmğ"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şmb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "totıla"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1729,7 +1771,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Biremleklär"
@@ -1799,25 +1841,25 @@ msgstr "Bu MySQL serverdä %s sünderelgän bulğan."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Bu MySQL server %s saqlaw enginen totmí."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Yaraqsız biremlek"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Tüşämä adı yaraqsız"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "\"%s\" tüşämäse \"%s\" itep ataldı"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1849,10 +1891,9 @@ msgstr "%s digän tışlaw tabılmadı!"
msgid "Theme path not found for theme %s!"
msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Tışlaw / Bizäleş"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1860,7 +1901,6 @@ msgstr "Totaşa almím: yaraqsız köyläwlär."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s siña İsäñme di"
@@ -2009,7 +2049,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Tüşämä"
@@ -2097,7 +2137,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2145,7 +2184,7 @@ msgid "Documentation"
msgstr "Qullanma"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-soraw"
@@ -2153,121 +2192,121 @@ msgstr "SQL-soraw"
msgid "MySQL said: "
msgstr "MySQL qaytarışı:"
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL Centekläw"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL Centeklämäskä"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP Kodısız"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP-Kod yasa"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Yañart"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL Tikşermäskä"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL'nı Tikşer"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Engine"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bayt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y.%m.%d, %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s kön, %s säğät, %s minut ta %s sekund"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Başlawğa"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Uzğan"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Azaq"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" biremlegenä küç."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2279,42 +2318,42 @@ msgstr ""
msgid "Structure"
msgstr "Tözeleş"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Östäw"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Eşkärtü"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web-server'neñ yökläw törgäge"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2673,7 +2712,7 @@ msgstr "Biremlekne bolay atap quy"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4663,7 +4702,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Xoquqlar"
@@ -4675,7 +4714,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4882,9 +4921,9 @@ msgstr "Şul biremneñ bilgelämäse:"
msgid "Compression:"
msgstr "Qısu"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Buş"
@@ -5024,39 +5063,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "Add/Delete Field Columns"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d digäne yazma sanı öçen kileşmi."
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "kerem; berençese #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "yatqırıp"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "yatqırıp (başlıqlar almaşıp)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "bastırıp"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "%s ısulı belän; başlıqnı %s yul sayın qabatlísı"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Qullanası tezeş"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5069,103 +5126,103 @@ msgstr "Qullanası tezeş"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
#, fuzzy
msgid "Options"
msgstr "Eşkärtü"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Tulı Mätennär"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
#, fuzzy
msgid "Relational key"
msgstr "Bäyläneşlär sxeme"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Bäyläneşlär sxeme"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Bu yazma salınğan buldı"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Üter"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "sorawda"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Yazma sanı:"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "tulayım"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Soraw eşkärtü %01.4f sek aldı"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Üzgärt"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Soraw qaytarmasın eşkärtü"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Bastıru küreneşe (bar mätennär belän)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF schema kürsätü"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
msgid "Create view"
msgstr "Server söreme"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Bäyläneş tabılmadı"
@@ -5211,7 +5268,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer Pulı"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB Torışı"
@@ -5693,7 +5750,7 @@ msgstr "Barlıq MIME-törlär"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Host"
@@ -5907,7 +5964,7 @@ msgstr "SQL qaytarışı"
msgid "Generated by"
msgstr "Ürçätkeç:"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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ı."
@@ -6069,7 +6126,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Üzgäreşsez"
@@ -6396,14 +6453,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Üzgärmä"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Bäyä"
@@ -6643,20 +6700,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Binar köndälek"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Üzgärmälär"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Bilgelämä"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Engine"
@@ -6706,11 +6763,11 @@ msgstr "Täqwim"
msgid "Columns"
msgstr "Alan iseme"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Bu SQL-sorawğa tamğa quy"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
@@ -6946,7 +7003,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Yaña qullanuçı östäw"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Waqıt"
@@ -7168,7 +7225,7 @@ msgid "Protocol version"
msgstr "Protokol söreme"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Qullanuçı"
@@ -7447,7 +7504,7 @@ msgstr "Yarat"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -7639,18 +7696,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:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
#, fuzzy
msgid "Files"
msgstr "Alan"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Sorawnı Qısqartıp Kürsätäse"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Tulı Sorawlar Kürsät"
@@ -8180,7 +8237,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -8320,264 +8377,246 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "%s cebe uñışlı üterelgän buldı."
-
-#: server_status.php:103
-#, 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:230
-msgid "Handler"
-msgstr "Eşkärtkeç"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Soraw alxätere"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Ceplär"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Çaqlı birem"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Kiçerelgän östäw"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Tezeş alxätere"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Bäylär"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Tezü"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Eş-ara idäräçese"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Tüşämälärne yabıp beteräse"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Açıq tüşämä tezmäse"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Soraw alxäteren awdar"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "Eşläw Torışı"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Server Saylaw"
-
-#: server_status.php:368
-#, fuzzy
-msgid "Query statistics"
-msgstr "Kerem Nöfüse"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Yañart"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "sekund sayın"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "sekund sayın"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "totıla"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "totıla"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "sekund sayın"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "%s cebe uñışlı üterelgän buldı."
+
+#: server_status.php:136
+#, 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:263
+msgid "Handler"
+msgstr "Eşkärtkeç"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Soraw alxätere"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Ceplär"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Çaqlı birem"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Kiçerelgän östäw"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Tezeş alxätere"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Bäylär"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Tezü"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Eş-ara idäräçese"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Tüşämälärne yabıp beteräse"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Açıq tüşämä tezmäse"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Soraw alxäteren awdar"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "Eşläw Torışı"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Server Saylaw"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Sersüzen üzgärtäse tügel"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Bäyläneşlär"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "säğät sayın"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "minut sayın"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "sekund sayın"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Soraw töre"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
#, fuzzy
msgid "Replication status"
msgstr "Bäyläneşlär"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Taşım"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Alındı"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Cibärelde"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Totaşular"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Özderelde"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Proseslar"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8585,78 +8624,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8664,7 +8703,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8672,43 +8711,43 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
#, fuzzy
msgid "The number of pages currently dirty."
msgstr "Yaratılğan bit sanı bu."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Buş bitlär sanı."
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8716,33 +8755,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8751,92 +8790,92 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
#, fuzzy
msgid "The current number of pending reads."
msgstr "Uqılğan bit sanı bu."
-#: server_status.php:879
+#: server_status.php:888
#, fuzzy
msgid "The current number of pending writes."
msgstr "Yazılğan bit sanı bu."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
#, fuzzy
msgid "The total number of data reads."
msgstr "Uqılğan bit sanı bu."
-#: server_status.php:882
+#: server_status.php:891
#, fuzzy
msgid "The total number of data writes."
msgstr "Yazılğan bit sanı bu."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
#, fuzzy
msgid "The number of log write requests."
msgstr "Tezelgän yazma sanı bu."
-#: server_status.php:888
+#: server_status.php:897
#, 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:889
+#: server_status.php:898
#, 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:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Köndälek biremenä yazılğan bayt sanı bu."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Yaratılğan bit sanı bu."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8845,144 +8884,144 @@ msgstr ""
"values are counted in pages; the page size allows them to be easily "
"converted to bytes."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Uqılğan bit sanı bu."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Yazılğan bit sanı bu."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
#, 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:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Açıq toruçı birem sanı."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Açıq toruçı tüşämä sanı."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "Alxätergä turı kilü sanı bu."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8990,99 +9029,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Tezelgän yazma sanı bu."
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9090,18 +9129,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Biredä açıq bulğan totaşu sanı."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9109,7 +9148,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
#, fuzzy
msgid "The number of threads that are not sleeping."
msgstr "Açıq toruçı birem sanı."
@@ -9234,7 +9273,7 @@ msgstr "Server üzgärmäläre & köyläneşe"
msgid "Session value"
msgstr "Sessi bäyäse"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Töp bäyä"
@@ -9513,42 +9552,42 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
#, fuzzy
msgid "Showing SQL query"
msgstr "Tulı Sorawlar Kürsät"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL'nı Tikşer"
-#: sql.php:960
+#: sql.php:973
#, 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:992
+#: sql.php:1005
msgid "Label"
msgstr "Yarlıq"
@@ -9935,25 +9974,25 @@ msgstr ""
msgid "No rows selected"
msgstr "Kertemnär sayladı"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Alannar saylísı (iñ kimendä ber):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Bit sayın Kertem sanı"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Kürsätü tärtibe:"
@@ -10253,8 +10292,12 @@ msgstr ""
msgid "Rename view to"
msgstr "Tüşämä adın üzgärtü"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Tışlaw / Bizäleş"
+
+#~ msgid "seconds"
+#~ msgstr "sekund sayın"
+
#~ msgid "Query results"
#~ msgstr "Soraw qaytarmasın eşkärtü"
@@ -10265,8 +10308,6 @@ msgstr "Tüşämä adın üzgärtü"
#~ msgid "Show processes"
#~ msgstr "Proseslär tezmäse"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Awdar"
@@ -10284,31 +10325,20 @@ msgstr "Tüşämä adın üzgärtü"
#~ msgstr ""
#~ "Soraw nöfüse : Bu server yöklännän birle, aña taba %s soraw kilgän."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr "Törle buluı bar. YBS 3.11 qarísı"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Soraw töre"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Yaña qullanuçı östäw"
-#, fuzzy
#~ msgid "Create User"
#~ msgstr "Server söreme"
diff --git a/po/ug.po b/po/ug.po
index 09be839867..05f20d59bb 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,7 +6,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: \n"
"Language-Team: Uyghur \n"
@@ -18,12 +18,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "ھەممىسىنى كۆرسىتىش"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -40,23 +40,23 @@ msgstr ""
"كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز "
"ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "ئىزدەش"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -73,7 +73,7 @@ msgstr "ئىزدەش"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -86,7 +86,7 @@ msgstr "قىممەت ئىسمى"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "ئىزاھات"
@@ -137,7 +137,7 @@ msgstr "جەدۋەل ئىزاھى"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "سۆزلەم"
@@ -150,7 +150,7 @@ msgstr "سۆزلەم"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "تۈرى"
@@ -166,7 +166,7 @@ msgstr "تۈرى"
msgid "Null"
msgstr "بوش"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -195,7 +195,7 @@ msgstr "ئۇلانما"
msgid "Comments"
msgstr "ئىزاھلار"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -206,12 +206,12 @@ msgstr "ئىزاھلار"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "يوق"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -226,7 +226,7 @@ msgstr "يوق"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -245,11 +245,11 @@ msgstr "ساندان قالدۇقىنى كۆرسىتىش"
msgid "No tables found in database."
msgstr "سانداندا جەدۋەل يوق"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "ھەممىنى تاللاش"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "تاللاشنى قالدۇرۇش"
@@ -271,7 +271,7 @@ msgstr "ساندان %s غا كۆچۈرۈلدى %s"
msgid "Rename database to"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "بۇيرۇق"
@@ -332,7 +332,7 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -359,7 +359,7 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "جەدۋەل"
@@ -375,7 +375,7 @@ msgstr "سەپ سانى"
msgid "Size"
msgstr "ھەجىم"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "ئىشلىتىلمەكتە"
@@ -401,7 +401,7 @@ msgstr "ئاخىرقى يېڭلىنىش"
msgid "Last check"
msgstr "ئاخىرقى تەكشۈرۈش"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -420,25 +420,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "تۈرلەش"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "ئارتىش"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "كېمىيىش"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "كۆرسىتىش"
@@ -461,7 +461,7 @@ msgstr "ئۆچۈرۈش"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "ياكى"
@@ -490,58 +490,58 @@ msgstr "جەدۋەللەرنى ئىشلىتىش"
msgid "SQL query on database %s :"
msgstr "SQL ئىجرا بولۋاتقان ساندان %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "تاپشۇرۇش"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "رەت قىلىندى"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "سۆزلەردىن ئەڭ ئازدىن بىرى"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "بارلىق سۆزلەر"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "ئېنىق ماسلىق"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "مۇنتىزىم ئىپادە"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"%s \" نىڭ ئىزلەش نەتىجىسى %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "كۆزەت"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?"
msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -552,174 +552,174 @@ msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
msgid "Delete"
msgstr "ئۆچۈرۈش"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "جەمئىي: %s ئوخشاشلىق"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "سانداندىن ئىزدەش"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "ئىزدەشكە تىگىشلىك خەت ياكى قىقىممىتى(دەرىجىسى:«%»"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "تاپقىنى:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "ھەر بىر تاق سۆزنى (\" \") بەلگىسى ئارقىلىق ئايرىڭ."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "تۆۋەندىكى جەدۋەل(لەر): "
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "ئىچىدىكى سۆزلەم:"
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "سانداندا جەدۋەل يوق"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr " %s جەدۋەل تازىلاندى"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "%s كۆرۈنمە ئۆچۈرۈلدى"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "%s جەدىۋەل ئۆچۈرۈلدى"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "ئاكتىپ ئىزلاش"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "ئىزلاش ئاكتىپ ئەمەس"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "قاراش"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "كۆچۈرۈش"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "جەمئىي"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى"
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "تاللانغىنى:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "ھەممىنى تاللاش"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "تاللاشنى بىكار قىلىش"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "مەزمۇن بارلارنى تاللاش"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "چىقىرىش"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "بېسىپ كۆرسىتىش"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "تازىلاش"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "ئۆچۈرۈش"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "جەدۋەل تەكشۈرۈش"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "جەدۋەلنى ئەلالاش"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "جەدۋەلنى ئوڭشاش"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "جەدۋەل تەھلىلى"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Repair table"
msgid "Replace table prefix"
msgstr "جەدۋەلنى ئوڭشاش"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr ""
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "مەلۇمات لۇغىتى"
@@ -734,9 +734,9 @@ msgstr "ئىزلانغان جەدۋەل"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "ساندان"
@@ -752,8 +752,8 @@ msgstr "قۇرۇش"
msgid "Updated"
msgstr "يېڭلاش"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "ھالەت"
@@ -896,7 +896,7 @@ msgstr "خەتكۈچ ئۆچۈرۈلدى"
msgid "Showing bookmark"
msgstr "خەتكۈچنى كۆرسىتىش"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "قۇرۇلغان خەتكۈچ %s"
@@ -923,7 +923,7 @@ msgstr ""
"won't be able to finish this import unless you increase php time limits."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -949,15 +949,15 @@ msgstr "بىر چىكىپ تاللاڭ"
msgid "Click to unselect"
msgstr "بىر چىكىپ بىكار قىلىڭ"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "راستىنلا ئجرا قىلىمسىز"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "ساندان تولۇق ئۆچۈرۈلدى!"
@@ -1057,180 +1057,218 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "مۇلازىمىتېر تاللاش"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL query"
-msgid "Live query chart"
-msgstr "SQL سورىقى"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "يىغىندىسى"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr ""
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Remove database"
-msgid "Reload Database"
-msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "كۆچۈرۈلگەن ساندان"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one column."
-msgid "Table must have at least one column"
-msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك"
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create"
-msgid "Create Table"
-msgstr "قۇرۇش"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "جەدۋەللەرنى ئىشلىتىش"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "ئىزدەش"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr ""
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "SQL query"
-msgid "Show search results"
-msgstr "SQL سورىقى"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "كۆزەت"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Delete"
-msgid "Deleting"
-msgstr "ئۆچۈرۈش"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr ""
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "SQL query"
-msgid "Show query box"
-msgstr "SQL سورىقى"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Inline"
-msgid "Inline Edit"
-msgstr " ئىچكى بىرلىشىش"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تەھىرلەش"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "مۇلازىمىتېر تاللاش"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL query"
+msgid "Live query chart"
+msgstr "SQL سورىقى"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "يىغىندىسى"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "مۇلازىمىتېر تاللاش"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+msgid "Connections / Processes"
+msgstr ""
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr ""
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr ""
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Remove database"
+msgid "Reload Database"
+msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "كۆچۈرۈلگەن ساندان"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr ""
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "Table must have at least one column."
+msgid "Table must have at least one column"
+msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك"
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create"
+msgid "Create Table"
+msgstr "قۇرۇش"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "جەدۋەللەرنى ئىشلىتىش"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "ئىزدەش"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr ""
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "SQL query"
+msgid "Show search results"
+msgstr "SQL سورىقى"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "كۆزەت"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Delete"
+msgid "Deleting"
+msgstr "ئۆچۈرۈش"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr ""
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "SQL query"
+msgid "Show query box"
+msgstr "SQL سورىقى"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Inline"
+msgid "Inline Edit"
+msgstr " ئىچكى بىرلىشىش"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1238,72 +1276,72 @@ msgstr "تەھىرلەش"
msgid "Save"
msgstr ""
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "SQL query"
msgid "Show search criteria"
msgstr "SQL سورىقى"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "سېرتقى ئۇلىنىشنى تاللاش"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "تاشقى ئاچقۇق قىممىتى"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ"
# column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "سۆزلەمنى كۆرسەتمەسلىك"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "پارول ھاسىللاش"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "ھاسىللاش"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "پارولنى ئۆزگەرتىش"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "تېخىمۇ كۆپ"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1311,13 +1349,13 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "ېيڭى نەشىر"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
@@ -1325,249 +1363,249 @@ msgid "up to date"
msgstr "%s جەدۋەل"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "تامام"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "ئالدىنقى ئاي"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "كىيىنكى ئاي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "بۈگۈن"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "قەھرىتان"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "ھۇت"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "نورۇز"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "ئۈمىد"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "باھار"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "6-ئاي"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "7-ئاي"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "8-ئاي"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "9-ئاي"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "10-ئاي"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "11-ئاي"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "12-ئاي"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "1-ئاي"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "2-ئاي"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "3-ئاي"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "4-ئاي"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "5-ئاي"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "6-ئاي"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "چىللە"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "تومۇز"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "مىزان"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "ئوغۇز"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "ئوغلاق"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "كۆنەك"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "يەكشەنبە"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "دۈشەنبە"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "سەيشەنبە"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "چارشەنبە"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "پەيشەنبە"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "جۈمە"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "شەنبە"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "دۈشەنبە"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "سەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "چارشەنبە"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "پەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "جۈمە"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "شەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "يەكشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "دۈشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "سەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "چارشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "پەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "جۈمە"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "شەنبە"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "ھەپتە"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "سائەت"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "مىنۇت"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "سېكنۇت"
@@ -1662,7 +1700,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "ساندان"
@@ -1729,25 +1767,25 @@ msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە ب
msgid "This MySQL server does not support the %s storage engine."
msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "ئۈنۈمسىز ساندان"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "ئۈنۈمسىز جەدۋەل ئىسمى"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى."
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى."
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1779,10 +1817,9 @@ msgstr "تېما %s تېپىلمىدى!"
msgid "Theme path not found for theme %s!"
msgstr "ماۋزۇ %s تېپىلمىدى."
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "تېما \\ ئۇسلۇب"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1790,7 +1827,6 @@ msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s خۇش كەلدىڭىز"
@@ -1941,7 +1977,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr ""
@@ -2022,7 +2058,6 @@ msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىت
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "مۇلازىمىتېر"
@@ -2070,7 +2105,7 @@ msgid "Documentation"
msgstr "قوللانما"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL سورىقى"
@@ -2078,119 +2113,119 @@ msgstr "SQL سورىقى"
msgid "MySQL said: "
msgstr "MySQL جاۋابى:"
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "Failed to connect to SQL validator!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL ئىزاھى"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL ئىزاھىىدىن ئاتلاش"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP كودى يوق"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP كودى قۇرۇش"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "يېڭلاش"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL دەلىللەشتىن ئاتلاش"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL دەلىللەش"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "Inline edit of this query"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr " ئىچكى بىرلىشىش"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "ئاساسىي مەزمۇن"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "بايت"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PiB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "باشلا"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "ئالدىنقىسى"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "ئاخىرقىسى"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "ساندان "%s" .غا ئۆتۈش"
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2202,42 +2237,42 @@ msgstr ""
msgid "Structure"
msgstr "تۈزۈلىشى"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "قىستۇرۇش"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "ئىشلەملەر"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2582,7 +2617,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4500,7 +4535,7 @@ msgstr "لايىھەلىگۈچ"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "ھۇقۇقى"
@@ -4512,7 +4547,7 @@ msgstr "دائىملىق"
msgid "Return type"
msgstr "تۈرگە قايتىش"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4715,9 +4750,9 @@ msgstr "ھۆججەتنىڭ ھەرىپ-بەلگە توپلىمى"
msgid "Compression:"
msgstr "پىرىسلاش"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "يوق"
@@ -4856,37 +4891,57 @@ msgstr ""
msgid "Language"
msgstr "تىلى"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete columns"
+msgid "Restore column order"
+msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "بىر چىكىپ تاللاڭ"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس"
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr ""
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4899,98 +4954,98 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial import"
msgid "Partial texts"
msgstr "بۆلۈپ كىرگۈزىش"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "ئۇمۇمىي"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "ئۆزگەرتتىش"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "بېسىپ چىقىرش كۈرۈلمىسى"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "جەدۋەل ئىزاھى"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "نەشىرنى قۇىماق"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "ئۇلىنىشنى تاپالمىدى"
@@ -5034,7 +5089,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5497,7 +5552,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "ئاساسىي ماشىنا"
@@ -5703,7 +5758,7 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -5860,7 +5915,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr ""
@@ -6185,14 +6240,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr ""
@@ -6426,20 +6481,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6484,11 +6539,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6686,7 +6741,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "ۋاقىت"
@@ -6849,7 +6904,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr ""
@@ -7110,7 +7165,7 @@ msgstr "قۇرۇش"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7289,17 +7344,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr ""
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7804,7 +7859,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7941,257 +7996,240 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr ""
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr ""
-
-#: server_status.php:230
-msgid "Handler"
-msgstr ""
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr ""
-
-#: server_status.php:232
-msgid "Threads"
-msgstr ""
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr ""
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr ""
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr ""
-
-#: server_status.php:237
-msgid "Joins"
-msgstr ""
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr ""
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr ""
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr ""
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr ""
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr ""
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr ""
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "مۇلازىمىتېر تاللاش"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr ""
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "يېڭلاش"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "سېكنۇت"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "سېكنۇت"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "مىنۇت"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "مىنۇت"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "سېكنۇت"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr ""
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr ""
+
+#: server_status.php:263
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr ""
+
+#: server_status.php:265
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr ""
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:270
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr ""
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr ""
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "مۇلازىمىتېر تاللاش"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
msgid "Containing the word:"
msgstr ""
-#: server_status.php:445
+#: server_status.php:460
msgid "Show only alert values"
msgstr ""
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "مۇناسىۋىتى"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8199,78 +8237,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8278,7 +8316,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8286,42 +8324,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8329,33 +8367,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8364,227 +8402,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8592,99 +8630,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8692,18 +8730,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8711,7 +8749,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8832,7 +8870,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -9106,39 +9144,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr ""
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9512,23 +9550,23 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr ""
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr ""
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr ""
@@ -9808,10 +9846,12 @@ msgstr ""
msgid "Rename view to"
msgstr ""
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
+#~ msgid "Theme / Style"
+#~ msgstr "تېما \\ ئۇسلۇب"
+
+#~ msgid "seconds"
+#~ msgstr "سېكنۇت"
+
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -9819,13 +9859,9 @@ msgstr ""
#~ "ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]"
#~ "FAQ 3.11[/a] غا قاراڭ."
-#, fuzzy
-#~| msgid "Export"
#~ msgid "Bar type"
#~ msgstr "چىقىرىش"
-#, fuzzy
-#~| msgid "Create version"
#~ msgid "Create User"
#~ msgstr "نەشىرنى قۇىماق"
diff --git a/po/uk.po b/po/uk.po
index 8218f42eae..aead78005a 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,9 +3,9 @@ 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-06-14 17:22+0200\n"
-"PO-Revision-Date: 2010-12-28 22:26+0200\n"
-"Last-Translator: Olexiy Zagorskyi \n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
+"PO-Revision-Date: 2011-06-17 10:55+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: ukrainian \n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -16,12 +16,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Показати все"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -39,23 +39,23 @@ msgstr ""
"вікно, або налаштування безпеки Вашого оглядача блокують між-віконні "
"оновлення."
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Шукати"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -72,7 +72,7 @@ msgstr "Шукати"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -85,7 +85,7 @@ msgstr "Ім'я ключа"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Опис"
@@ -113,6 +113,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"файл %s недоступний на сервері, будь ласка завітайте на www.phpmyadmin.net "
+"за додатковою інформацією."
#: db_create.php:58
#, php-format
@@ -136,7 +138,7 @@ msgstr "Коментар до таблиці"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Стовпчик"
@@ -149,7 +151,7 @@ msgstr "Стовпчик"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -165,7 +167,7 @@ msgstr "Тип"
msgid "Null"
msgstr "Нуль"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -194,7 +196,7 @@ msgstr "Лінки до"
msgid "Comments"
msgstr "Коментарі"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -205,12 +207,12 @@ msgstr "Коментарі"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ні"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -225,7 +227,7 @@ msgstr "Ні"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -244,11 +246,11 @@ msgstr "Переглянути дамп (схему) БД"
msgid "No tables found in database."
msgstr "В БД не виявлено таблиць."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Відмітити все"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Зняти всі відмітки"
@@ -270,7 +272,7 @@ msgstr "Базу даних %s скопійовано в %s"
msgid "Rename database to"
msgstr "Перейменувати базу даних в"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Команда"
@@ -331,7 +333,7 @@ msgstr "Перейти до скопійованої бази даних"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -356,7 +358,7 @@ msgstr "Редагувати або експортувати схему зв'я
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Таблиця"
@@ -372,7 +374,7 @@ msgstr "Рядки"
msgid "Size"
msgstr "Розмір"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "використовується"
@@ -398,7 +400,7 @@ msgstr "Поновлено"
msgid "Last check"
msgstr "Перевірено"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -416,28 +418,28 @@ msgstr "Переключитись на"
#: db_qbe.php:186
msgid "visual builder"
-msgstr ""
+msgstr "Візуальний конструктор"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Посортувати"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Зростаючий"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Спадаючий"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Показати"
@@ -460,7 +462,7 @@ msgstr "Видалити"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Або"
@@ -489,39 +491,39 @@ msgstr "Використовувати таблиці"
msgid "SQL query on database %s :"
msgstr "SQL-запит до БД %s :"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "Виконати запит"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Доступ заборонено"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "принаймі одне з слів"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "всі слова"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "точну фразу"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "регулярний вираз"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "Результати пошуку \"%s \" %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
@@ -529,19 +531,19 @@ msgstr[0] "%s співпадіння у таблиці %s "
msgstr[1] "%s співпадіння у таблиці %s "
msgstr[2] "%s співпадінь у таблиці %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Переглянути"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "Видалити співпадіння для таблиці %s ?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -552,7 +554,7 @@ msgstr "Видалити співпадіння для таблиці %s ?"
msgid "Delete"
msgstr "Видалити"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
@@ -560,168 +562,168 @@ msgstr[0] "Всього: %s співпадіння"
msgstr[1] "Всього: %s співпадінь"
msgstr[2] "Всього: %s співпадінь"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Шукати в базі даних"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Слова чи значення, які потрібно знайти (маска: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Знайти:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Слова розділені пробілом (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Всередині таблиць:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "Всередині стовпчика:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "В БД не виявлено таблиць."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблицю %s було очищено"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
-msgstr ""
+msgstr "Вигляд %s знищено"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблицю %s було знищено"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Трекінг є активним."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Трекінг не активний."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr ""
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr ""
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Всього"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "З відміченими:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Відмітити все"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Зняти усі відмітки"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Експорт"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Версія для друку"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Очистити"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Знищити"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Перевірити таблицю"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Оптимізувати таблицю"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Ремонтувати таблицю"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Аналіз таблиці"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Замінити дані таблиці даними з файлу"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Замінити дані таблиці даними з файлу"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Словник даних"
@@ -736,9 +738,9 @@ msgstr ""
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "БД"
@@ -754,8 +756,8 @@ msgstr ""
msgid "Updated"
msgstr ""
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Статус"
@@ -891,7 +893,7 @@ msgstr "Закладку було видалено."
msgid "Showing bookmark"
msgstr ""
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -914,7 +916,7 @@ msgid ""
msgstr ""
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -940,15 +942,15 @@ msgstr ""
msgid "Click to unselect"
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Оператори \"DROP DATABASE\" заборонені."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Ви насправді хочете "
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1040,166 +1042,206 @@ msgstr "Видалити відмічених користувачів"
msgid "Close"
msgstr ""
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Вибір сервера"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL query"
-msgid "Live query chart"
-msgstr "SQL-запит"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Разом"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "Обробка запиту"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "Перейменування баз даних"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "Перезавантаження бази даних"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "Копіювання бази даних"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "Зміна Кодування"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "Таблиця повинна мати принаймі один Стовпчик"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "Створити Таблицю"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Використовувати таблиці"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "Пошук"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "Сховати критерії пошуку"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "Показати критерії пошуку"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Переглянути"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "Усунути %s"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "Сховати блок запиту"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "Показати блок запиту"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "Редагування рядків"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редагувати"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Вибір сервера"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL query"
+msgid "Live query chart"
+msgstr "SQL-запит"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Разом"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Вибір сервера"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Процеси"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "З'єднань"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+msgid "Issued queries"
+msgstr ""
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "Статистика запиту"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr ""
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "Обробка запиту"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "Перейменування баз даних"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "Перезавантаження бази даних"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "Копіювання бази даних"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "Зміна Кодування"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "Таблиця повинна мати принаймі один Стовпчик"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "Створити Таблицю"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Використовувати таблиці"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "Пошук"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "Сховати критерії пошуку"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "Показати критерії пошуку"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Переглянути"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "Усунути %s"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "Сховати блок запиту"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "Показати блок запиту"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "Редагування рядків"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1207,67 +1249,67 @@ msgstr "Редагувати"
msgid "Save"
msgstr "Зберегти"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "Сховати критерії пошуку"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "Показати критерії пошуку"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ігнорувати"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Виберіть колонку для відображення"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "Згенерувати пароль"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "Змінити пароль"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "Більше"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1275,260 +1317,260 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Перейти до бази даних"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "Попередні"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Наступні"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "Сьогодні"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "Січень"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "Лютий"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "Березень"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "Квітень"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Травень"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "Червень"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "Липень"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "Серпень"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "Вересень"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "Жовтень"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "Листопад"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "Грудень"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "Трв"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Гру"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "Неділя"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "Понеділок"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "Вівторок"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "П'ятниця"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Нд"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "Нд"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr ""
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "Хвилина"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "Секунда"
@@ -1617,7 +1659,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Бази Даних"
@@ -1683,25 +1725,25 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "Таблицю %s було перейменовано в %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1733,9 +1775,8 @@ msgstr ""
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
msgstr ""
#: libraries/auth/config.auth.lib.php:76
@@ -1744,7 +1785,6 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "Ласкаво просимо до %s"
@@ -1891,7 +1931,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Таблиць"
@@ -1976,7 +2016,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сервер"
@@ -2024,7 +2063,7 @@ msgid "Documentation"
msgstr "Документація"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL-запит"
@@ -2032,119 +2071,119 @@ msgstr "SQL-запит"
msgid "MySQL said: "
msgstr "Відповідь MySQL: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Тлумачити SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Не тлумачити SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "без PHP коду"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "Створити PHP код"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "Не перевіряти SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "Перевірити SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Б"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "кБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y р., %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s днів, %s годин, %s хвилин і %s секунд"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Початок"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Назад"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Кінець"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти до бази даних "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2156,41 +2195,41 @@ msgstr ""
msgid "Structure"
msgstr "Структура"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Вставити"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Операцій"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Встановлений Вами каталог для завантаження файлів недоступний"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2535,7 +2574,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr ""
@@ -4416,7 +4455,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Привілеї"
@@ -4428,7 +4467,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4608,9 +4647,9 @@ msgstr "Кодування файлу:"
msgid "Compression:"
msgstr "Стискання:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Немає"
@@ -4739,39 +4778,55 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+msgid "Restore column order"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+msgid "Click to sort"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "рядків з"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr " горизонтальному"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "горизонтальному (повернуті заголовки)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "вертикальному"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "в %s режимі і дублювати заголовки через кожні %s рядків "
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4784,102 +4839,102 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Часткові тексти"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Повні тексти"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Схема зв'язків"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Перетворення МІМЕ-типу бровзером"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Рядок видалено"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Вбити"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "по запиту"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Показано записи "
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "всього"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запит виконувався %01.4f сек"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Змінити"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Показати PDF схему"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Створити користувача"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Лінк не знайдено"
@@ -4923,7 +4978,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "Статус InnoDB"
@@ -5386,7 +5441,7 @@ msgstr "Доступні MIME-types"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Хост"
@@ -5591,7 +5646,7 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Згенеровано"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL повернула пустий результат (тобто нуль рядків)."
@@ -5748,7 +5803,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Змін немає"
@@ -6077,14 +6132,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Змінна"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Значення"
@@ -6324,20 +6379,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Змінні"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Кодування"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6384,11 +6439,11 @@ msgstr ""
msgid "Columns"
msgstr "Назви колонок"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Закладка на даний SQL-запит"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6621,7 +6676,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr "Додати нового користувача"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Час"
@@ -6819,7 +6874,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Користувач"
@@ -7090,7 +7145,7 @@ msgstr "Створити"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7275,17 +7330,17 @@ msgstr "Таблиці \"%s\" не існує!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr ""
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Обрізати показані запити"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Показати повні запити"
@@ -7817,7 +7872,7 @@ msgstr "Права успішно перезавантажено."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7954,259 +8009,246 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
+#: server_status.php:27
+msgid "Refresh rate"
+msgstr ""
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "Minute"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "Хвилина"
+msgstr[1] "Хвилина"
+msgstr[2] "Хвилина"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "Секунда"
+msgstr[1] "Секунда"
+msgstr[2] "Секунда"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процес %s припинено."
-#: server_status.php:103
+#: server_status.php:136
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений."
-#: server_status.php:230
+#: server_status.php:263
msgid "Handler"
msgstr ""
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr ""
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr ""
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr ""
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr ""
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr ""
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr ""
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr ""
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr ""
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr ""
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "Інформація про роботу сервера"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Вибір сервера"
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "Статистика запиту"
-
-#: server_status.php:369
+#: server_status.php:402
msgid "All status variables"
msgstr ""
-#: server_status.php:379 server_status.php:410
-msgid "Refresh rate"
-msgstr ""
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "Секунда"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "Секунда"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "Minute"
-msgid "minutes"
-msgstr "Хвилина"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Не змінювати пароль"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show tables"
msgid "Show only alert values"
msgstr "Показати таблиці"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Зв'язки"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "за годину"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "за хвилину"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "за секунду"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Тип запиту"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "Цей MySQL сервер працює %s. Стартував %s."
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Трафік"
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr "Отримано"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Відправлено"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "З'єднань"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Невдалих спроб"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Перервано"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Процеси"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8214,78 +8256,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8293,7 +8335,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8301,42 +8343,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8344,33 +8386,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8379,227 +8421,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8607,99 +8649,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8707,18 +8749,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8726,7 +8768,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8849,7 +8891,7 @@ msgstr "Змінні сервера та налаштування"
msgid "Session value"
msgstr "Значення сесії"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Загальне значення"
@@ -9123,41 +9165,41 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Перевірити SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Мітка"
@@ -9533,25 +9575,25 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Вибрати поля (щонайменше одне):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Додати умови пошуку (тіло для умови \"where\"):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "записів на сторінці"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Порядок перегляду:"
@@ -9843,14 +9885,15 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#~ msgid "seconds"
+#~ msgstr "Секунда"
+
#~ msgid "Query results"
#~ msgstr "Результати запиту"
#~ msgid "Show processes"
#~ msgstr "Показати процеси"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Перевстановити"
@@ -9869,13 +9912,9 @@ msgstr ""
#~ "Статистика запитів : З моменту запуску, до сервера було надіслано "
#~ "%s запитів."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Права успішно перезавантажено."
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Тип запиту"
diff --git a/po/ur.po b/po/ur.po
index 15b30508ca..4683ad2b38 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan \n"
"Language-Team: Urdu \n"
@@ -18,12 +18,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "تمام دکھائیں"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -40,23 +40,23 @@ msgstr ""
"مطلوبہ براؤزر دریچہ تازہ نہیں کیا جاسکتا۔ ہوسکتا ہے کہ آپ نے اصل دریچہ بند "
"کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "تلاش"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -73,7 +73,7 @@ msgstr "تلاش"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -86,7 +86,7 @@ msgstr "کلید نام"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "وضاحت"
@@ -140,7 +140,7 @@ msgstr "جدول تبصرے"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Command"
msgid "Column"
@@ -155,7 +155,7 @@ msgstr "کالم"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "قِسم"
@@ -171,7 +171,7 @@ msgstr "قِسم"
msgid "Null"
msgstr "خالی"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -200,7 +200,7 @@ msgstr "ربط بطرف"
msgid "Comments"
msgstr "تبصرہ"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -211,12 +211,12 @@ msgstr "تبصرہ"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "نہیں"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -231,7 +231,7 @@ msgstr "نہیں"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -250,11 +250,11 @@ msgstr "کوائفیہ کی ڈمپ (شجرہ) منظر کریں"
msgid "No tables found in database."
msgstr "کوائفیہ میں کوئی جدول نہیں مِلا۔"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "تمام منتخب کریں"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "تمام انتخاب ختم کریں"
@@ -276,7 +276,7 @@ msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے"
msgid "Rename database to"
msgstr "کوائفیہ نام بدلیں"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "حکم"
@@ -337,7 +337,7 @@ msgstr "نقل شدہ کوائفیہ پر جائیں"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -362,7 +362,7 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "جدول"
@@ -379,7 +379,7 @@ msgstr "صفیں"
msgid "Size"
msgstr "ناپ"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "استعمال میں ہے"
@@ -405,7 +405,7 @@ msgstr "آخری دفعہ کی تازہ کاری"
msgid "Last check"
msgstr "آخری دفعہ کی پڑتال"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -425,25 +425,25 @@ msgid "visual builder"
msgstr "بصری تعمیر کنندہ"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "چھانٹیں"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "صعودی"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "نزولی"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "دکھائیں"
@@ -466,7 +466,7 @@ msgstr "Del"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "یا"
@@ -495,58 +495,58 @@ msgstr "جداول استعمال کریں"
msgid "SQL query on database %s :"
msgstr "کوائفیہ کے لیے %s SQL طلب"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "طلب بھیجیں"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "رسائی نہیں دی گئی"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "کم از کم لفظوں میں سے ایک"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "تمام الفاظ"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "بعین فقرہ"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "بطور باقاعدہ اظہار"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "تلاش نتائج برائے \"%s \" %s"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s جدول کے ساتھ مشابہ%s"
msgstr[1] "%s جدول کے ساتھ مشابہات%s"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "براؤز"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "اس جدول کے مشابہات حذف %s کریں؟"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -557,65 +557,65 @@ msgstr "اس جدول کے مشابہات حذف %s کریں؟"
msgid "Delete"
msgstr "حذف"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "تمام: %s مشابہ"
msgstr[1] "تمام: %s مشابہات"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "کوائفیہ میں تلاش کریں"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "الفاظ یا قدروں کی تلاش برائے (wildcard: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "ڈھونڈیں:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "الفاظ ایک خالی حرف سے جدا جدا ہیں (\" \")."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "جدول میں:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "کالم میں:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "کوائیفیہ میں کوئی جدول نہیں ملا"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s خالی ہوچکا ہے"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "جدول نقل %s چھوڑا جاچکا ہے۔"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s چھوڑا جاچکا ہے"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "کھوج فعال ہے۔"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "کھوج غیر فعال ہے۔"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -623,110 +623,110 @@ msgid ""
msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "نقل جدول"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "چربہ کاری"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "مجموعہ"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔"
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "مع منتخب:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "تمام پڑتال کریں"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "تمام غیر پڑتال کریں"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "اوور ہیڈ جداول کی پڑتال کریں"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "برآمد"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "چھپائی منظر"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "خالی"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "چھوڑیں"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "جدول پڑتال کریں"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "جدول احسن کریں"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "جدول مرمت کریں"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "جدول تجزیہ کریں"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "جدول کوائف کو مسل سے بدلیں"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "جدول کوائف کو مسل سے بدلیں"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "کوائف لغت"
@@ -741,9 +741,9 @@ msgstr "کھوج شدہ جداول"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "کوائفیہ"
@@ -759,8 +759,8 @@ msgstr "بنایا"
msgid "Updated"
msgstr "تازہ کی گئی"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "حالت"
@@ -903,7 +903,7 @@ msgstr "نشانی حذف ہوچکا ہے۔"
msgid "Showing bookmark"
msgstr "نشانی دکھاتے ہوئے"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "نشانی %s بنایا گیا"
@@ -930,7 +930,7 @@ msgstr ""
"کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔"
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -956,15 +956,15 @@ msgstr "انتخاب کے لیے کلک کریں"
msgid "Click to unselect"
msgstr "غیر منتخب کے لیے کلک کریں"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔"
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "کیا آپ واقعی چاہتے ہیں"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!"
@@ -1061,166 +1061,208 @@ msgstr "منتخب صارفین ہٹائے جارہے ہیں"
msgid "Close"
msgstr "بند کریں"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "سرور انتخاب"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Hide query box"
-msgid "Live query chart"
-msgstr "طلب خانہ چھپائیں"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "میزان"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "لوڈ کررہا ہے"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "فرمایش عمل کرتے ہوئے"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "فرمایش عمل کرتے ہوئے نقص ہے"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "کالم چھوڑا جارہا ہے"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "بنیادی کلید شامل کررہا ہے"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "کوائفیہ نام بدلا جارہا ہے"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "کوائفیہ پھر لوڈ کریں"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "کوائفیہ نقل کیا جارہا ہے"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "جدول میں کم از کم ایک کالم ہو"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "جدول بنائیں"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "جداول استعمال کریں"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "تلاش کر رہا ہے"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "Hide search criteria"
-msgid "Hide search results"
-msgstr "تلاش کسوٹی چھپائیں"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "Show search criteria"
-msgid "Show search results"
-msgstr "تلاش کسوٹی دکھائیں"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "براؤز"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Delete"
-msgid "Deleting"
-msgstr "حذف"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "طلب خانہ چھپائیں"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "طلب خانہ دکھائیں"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "ان لائن تدوین"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تدوین"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "سرور انتخاب"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Hide query box"
+msgid "Live query chart"
+msgstr "طلب خانہ چھپائیں"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "میزان"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "سرور انتخاب"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr ""
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connection type"
+msgid "Connections / Processes"
+msgstr "جڑنے کی قسم"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL طلب"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "طلب شماریات"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "لوڈ کررہا ہے"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "فرمایش عمل کرتے ہوئے"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "فرمایش عمل کرتے ہوئے نقص ہے"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "کالم چھوڑا جارہا ہے"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "بنیادی کلید شامل کررہا ہے"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "کوائفیہ نام بدلا جارہا ہے"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "کوائفیہ پھر لوڈ کریں"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "کوائفیہ نقل کیا جارہا ہے"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "جدول میں کم از کم ایک کالم ہو"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "جدول بنائیں"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "جداول استعمال کریں"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "تلاش کر رہا ہے"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "Hide search criteria"
+msgid "Hide search results"
+msgstr "تلاش کسوٹی چھپائیں"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "Show search criteria"
+msgid "Show search results"
+msgstr "تلاش کسوٹی دکھائیں"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "براؤز"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Delete"
+msgid "Deleting"
+msgstr "حذف"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "طلب خانہ چھپائیں"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "طلب خانہ دکھائیں"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "ان لائن تدوین"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1228,67 +1270,67 @@ msgstr "تدوین"
msgid "Save"
msgstr ""
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "تلاش کسوٹی چھپائیں"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "تلاش کسوٹی دکھائیں"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "نظر انداز کریں"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "محولہ کلید منتخب کریں"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "فارن کلید منتخب کریں"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "ایک بنیادی یا منفرد کلید منتخب کریں"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "کالم دکھانے کے لیے انتخاب کریں"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "کالم کے لیے ایک اختیار اضافہ کریں"
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "پاس ورڈ بنائیں"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "بنائیں"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "پاس ورڈ تبدیل کریں"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "مزید"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1298,260 +1340,260 @@ msgstr ""
"%s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ", حالیہ مستحکم نسخہ:"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "کوائفیہ جائیں"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "ہوچکا"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "پچھلا"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "اگلا"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "آج"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "جنوری"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "فروری"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "مارچ"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "اپریل"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "مئی"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "جون"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "جولائی"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "اگست"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "ستمبر"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "اکتوبر"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "نومبر"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "دسمبر"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "جنوری"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "فروری"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "مارچ"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "اپریل"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "مئی"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "جون"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "جولائی"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "اگست"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "ستمبر"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "اکتوبر"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "نومبر"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "دسمبر"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "اتوار"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "پیر"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "منگل"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "بدھ"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "جمعرات"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "جمعہ"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "ہفتہ"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "اتوار"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "پیر"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "منگل"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "بدھ"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "جمعرات"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "جمعہ"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "ہفتہ"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "اتوار"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "پیر"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "منگل"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "بدھ"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "جمعرات"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "جمعہ"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "ہفتہ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "ہفتہ وار"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "گھنٹہ"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "منٹ"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "سیکنڈ"
@@ -1645,7 +1687,7 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "کوائفیے"
@@ -1715,25 +1757,25 @@ msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔"
msgid "This MySQL server does not support the %s storage engine."
msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔"
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "غلط کوائفیہ"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "غلط جدول نام"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1765,10 +1807,9 @@ msgstr "خیالیہ %s نیہں ملا!"
msgid "Theme path not found for theme %s!"
msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "خیالیہ / طرز"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1776,7 +1817,6 @@ msgstr "جڑ نہیں سکتا: غلط ترتیبات۔"
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "%s میں خوش آمدید"
@@ -1924,7 +1964,7 @@ msgstr "حصہ دارانہ"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "جداول"
@@ -2006,7 +2046,6 @@ msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکی
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "سرور"
@@ -2054,7 +2093,7 @@ msgid "Documentation"
msgstr "دستاویزات"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL طلب"
@@ -2062,119 +2101,119 @@ msgstr "SQL طلب"
msgid "MySQL said: "
msgstr "MySQL نے کہا:"
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "SQL جواز دہندہ سے جڑت ناکام ہوا!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL کی تفصیل بتائیں"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "SQL وضاحت کو چھوڑیں"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP کوڈ کے بغیر"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP کوڈ بنائیں"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "تازہ کریں"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL توثیق چھوڑیں"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL کی توثیق کریں"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "اس طلب کی ان لائن تدوین"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "ان لائن"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "تفصیلات"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "بائٹ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "کلو بائٹ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "میگا بائٹ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "گیگا بائٹ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "ٹیرا بائٹ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "پیٹا بائٹ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "ایگزا بائٹ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y پر %I:%M %p"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "شروع"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "پچھلا"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "اختتام"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "کوائفیہ میں جائیں "%s"."
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2186,41 +2225,41 @@ msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھ
msgid "Structure"
msgstr "ساخت"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "داخل کریں"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "عملیات"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "اپنے کمپیوٹر کو براؤز کریں:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
@@ -2578,7 +2617,7 @@ msgstr "طے شدہ جدول کی جدول"
msgid "Show binary contents as HEX by default"
msgstr "ثنائی مشمولات کو بطور HEX طے شدہ دکھائیں"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "ثنائی مشمولات بطور HEX دکھائیں"
@@ -4543,7 +4582,7 @@ msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr ""
@@ -4555,7 +4594,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4745,9 +4784,9 @@ msgstr ""
msgid "Compression:"
msgstr ""
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr ""
@@ -4868,37 +4907,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "فیلڈ کالمز شامل یا ختم کریں"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "انتخاب کے لیے کلک کریں"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr ""
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr ""
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4911,96 +4970,96 @@ msgstr ""
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "ٹیبل کمنٹس"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Created"
msgid "Create view"
msgstr "تخلیق کیا گیا"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr ""
@@ -5044,7 +5103,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr ""
@@ -5491,7 +5550,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr ""
@@ -5695,7 +5754,7 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -5850,7 +5909,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr ""
@@ -6177,14 +6236,14 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr ""
@@ -6416,20 +6475,20 @@ msgid "Synchronize"
msgstr ""
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr ""
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr ""
@@ -6476,11 +6535,11 @@ msgstr ""
msgid "Columns"
msgstr "آراء-رائے"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr ""
@@ -6680,7 +6739,7 @@ msgstr ""
msgid "+ Add a new value"
msgstr ""
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "وقت"
@@ -6841,7 +6900,7 @@ msgid "Protocol version"
msgstr ""
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr ""
@@ -7100,7 +7159,7 @@ msgstr "تخلیق کیا گیا"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr ""
@@ -7277,17 +7336,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr ""
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr ""
@@ -7792,7 +7851,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr ""
@@ -7929,259 +7988,244 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr ""
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr ""
-
-#: server_status.php:230
-msgid "Handler"
-msgstr ""
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr ""
-
-#: server_status.php:232
-msgid "Threads"
-msgstr ""
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr ""
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr ""
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr ""
-
-#: server_status.php:237
-msgid "Joins"
-msgstr ""
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr ""
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr ""
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr ""
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr ""
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr ""
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr ""
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr ""
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr ""
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "سرور انتخاب"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "طلب شماریات"
-
-#: server_status.php:369
-msgid "All status variables"
-msgstr ""
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "تازہ کریں"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "سیکنڈ"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "سیکنڈ"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "منٹ"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "منٹ"
+msgstr[1] "منٹ"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "سیکنڈ"
+msgstr[1] "سیکنڈ"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr ""
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr ""
+
+#: server_status.php:263
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr ""
+
+#: server_status.php:265
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr ""
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:270
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr ""
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr ""
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "سرور انتخاب"
+
+#: server_status.php:402
+msgid "All status variables"
+msgstr ""
+
+#: server_status.php:455
msgid "Containing the word:"
msgstr ""
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show only alert values"
msgstr "بائیں جھروکہ میں علامت دکھائیں"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Replication"
msgid "Related links:"
msgstr "لپیٹنا"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr ""
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr ""
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr ""
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr ""
-#: server_status.php:659
+#: server_status.php:668
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:665
+#: server_status.php:674
msgid "Received"
msgstr ""
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr ""
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr ""
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr ""
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr ""
-#: server_status.php:778
-msgid "Processes"
-msgstr ""
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr ""
-#: server_status.php:840
+#: server_status.php:849
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:841
+#: server_status.php:850
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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8189,78 +8233,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:853
+#: server_status.php:862
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:854
+#: server_status.php:863
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:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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:857
+#: server_status.php:866
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:858
+#: server_status.php:867
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 "
@@ -8268,7 +8312,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8276,42 +8320,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr ""
-#: server_status.php:867
+#: server_status.php:876
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:868
+#: server_status.php:877
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 "
@@ -8319,33 +8363,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:870
+#: server_status.php:879
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:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8354,227 +8398,227 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr ""
-#: server_status.php:894
+#: server_status.php:903
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:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr ""
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr ""
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:910
+#: server_status.php:919
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:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:913
+#: server_status.php:922
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:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8582,99 +8626,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:929
+#: server_status.php:938
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:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:931
+#: server_status.php:940
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:932
+#: server_status.php:941
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:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:939
+#: server_status.php:948
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:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8682,18 +8726,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:945
+#: server_status.php:954
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:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8701,7 +8745,7 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr ""
@@ -8822,7 +8866,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr ""
@@ -9096,39 +9140,39 @@ msgstr ""
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr ""
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr ""
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr ""
@@ -9498,23 +9542,23 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr ""
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr ""
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr ""
@@ -9799,6 +9843,12 @@ msgstr ""
msgid "Rename view to"
msgstr ""
+#~ msgid "Theme / Style"
+#~ msgstr "خیالیہ / طرز"
+
+#~ msgid "seconds"
+#~ msgstr "سیکنڈ"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "طلب چلت وقت موازنہ (مائیکروسیکنڈ میں)"
@@ -9814,8 +9864,6 @@ msgstr ""
#~ msgid "JSON encoder is needed for chart tooltips."
#~ msgstr "JSON ضابطہ کار اس چارٹ ٹول ٹّوٹکے کے لیے درکار ہے۔"
-#, fuzzy
-#~| msgid "Export"
#~ msgid "Bar type"
#~ msgstr "برآمد"
diff --git a/po/uz.po b/po/uz.po
index fe5303b8ab..dbd42ee17f 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_cyrillic \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Барчасини кўрсатиш"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган "
"ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Қидириш"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "Қидириш"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "Индекс номи"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Тавсифи"
@@ -136,7 +136,7 @@ msgstr "Жадвал изоҳи"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -151,7 +151,7 @@ msgstr "Майдон номлари"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Тур"
@@ -167,7 +167,7 @@ msgstr "Тур"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -196,7 +196,7 @@ msgstr "Алоқалар"
msgid "Comments"
msgstr "Изоҳлар"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -207,12 +207,12 @@ msgstr "Изоҳлар"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Йўқ"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -227,7 +227,7 @@ msgstr "Йўқ"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -246,11 +246,11 @@ msgstr "Маълумотлар базаси дампини (схемасини)
msgid "No tables found in database."
msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Барчасини белгилаш"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Белгилашни бекор қилиш"
@@ -272,7 +272,7 @@ msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха
msgid "Rename database to"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Буйруқ"
@@ -337,7 +337,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -367,7 +367,7 @@ msgstr "Алоқалар схемаси"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Жадвал "
@@ -383,7 +383,7 @@ msgstr "Қаторларсони"
msgid "Size"
msgstr "Ҳажми"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "ишлатилмоқда"
@@ -409,7 +409,7 @@ msgstr "Охирги янгиланиш"
msgid "Last check"
msgstr "Охирги текширув"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -430,25 +430,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Сортировка қилиш"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "Ўсиш тартибида"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Камайиш тартибида"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Кўрсатиш"
@@ -471,7 +471,7 @@ msgstr "Ўчириш"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Ёки"
@@ -504,39 +504,39 @@ msgstr "Жадвалларни ишлатиш"
msgid "SQL query on database %s :"
msgstr "\"%s\" маълумотлар базасига SQL-сўров: "
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "сўровни бажариш"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Рухсат берилмади"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "сўзлардан бири"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "барча сўзлар"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "аниқ мослик"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "мунтазам ибора"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"\"%s\" \" учун қидирув натижалари \"%s\":"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -544,20 +544,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та"
msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Кўриб чиқиш"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?"
msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -568,7 +568,7 @@ msgstr "Ушбу жадвал учун кузатув маълумотлари
msgid "Delete"
msgstr "Ўчириш"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -576,62 +576,62 @@ msgid_plural "Total: %s matches"
msgstr[0] "Жами: \"%s\" ўхшашлик"
msgstr[1] "Жами: \"%s\" ўхшашлик"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Маълумотлар базасида қидириш"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Излаш:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Қуйидаги жадвал(лар)да қидириш:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Қуйидаги майдон(лар)да қидириш: "
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "\"%s\" жадвали тозаланди"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr " \"%s\" намойиши ўчирилди"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "\"%s\" жадвали ўчирилди"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Кузатиш фаол."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Кузатиш фаол эмас."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -640,112 +640,112 @@ msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Намойиш"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Репликация (захира нусха кўчириш)"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Жами"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Белгиланганларни: "
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Барчасини белгилаш"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Белгилашни бекор қилиш"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспорт"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Чоп этиш версияси"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Тозалаш"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Ўчириш"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Жадвални текшириш"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Жадвални оптималлаштириш"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Жадвални тиклаш"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Жадвал таҳлили"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Ушбу жадвалга ўтиш"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Маълумотлар луғати"
@@ -760,9 +760,9 @@ msgstr "Кузатилган жадваллар"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Маълумотлар базаси"
@@ -778,8 +778,8 @@ msgstr "Тузилди"
msgid "Updated"
msgstr "Янгиланди"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Ҳолат"
@@ -926,7 +926,7 @@ msgstr "Хатчўп ўчирилди."
msgid "Showing bookmark"
msgstr "Хатчўпларни кўрсатиш"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" хатчўпи тузилди"
@@ -955,7 +955,7 @@ msgstr ""
"phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -982,15 +982,15 @@ msgstr "Танлаш учун сичқонча тугмасини босинг"
msgid "Click to unselect"
msgstr "Танлашни бекор қилиш учун сичқонча тугмасини босинг"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!"
@@ -1096,190 +1096,234 @@ msgstr "Белгиланган фойдаланувчиларни ўчириш"
msgid "Close"
msgstr "Ёпиш"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Серверни танланг"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Live query chart"
-msgstr "SQL сўровлари қутиси"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Жами"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-#| msgid "Load"
-msgid "Loading"
-msgstr "Юклаш"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Жараёнлар"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Маълумотлар базасидан қуйидагига нусха олиш"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Кодировка"
-
-#: js/messages.php:95
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт."
-
-#: js/messages.php:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Жадвал тузиш"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Жадвалларни ишлатиш"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Қидириш"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide search results"
-msgstr "SQL сўровлари қутиси"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show search results"
-msgstr "SQL сўровлари қутиси"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Кўриб чиқиш"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "\"%s\" ўчирилмоқда"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide query box"
-msgstr "SQL сўровлари қутиси"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show query box"
-msgstr "SQL сўровлари қутиси"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Жадвал турлари"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Таҳрирлаш"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Серверни танланг"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Live query chart"
+msgstr "SQL сўровлари қутиси"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Жами"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Серверни танланг"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Жараёнлар"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Уланишлар"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL сўровлари"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Show statistics"
+msgid "Query statistics"
+msgstr "Статискани кўрсатиш"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+#| msgid "Load"
+msgid "Loading"
+msgstr "Юклаш"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Жараёнлар"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Маълумотлар базасидан қуйидагига нусха олиш"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Кодировка"
+
+#: js/messages.php:108
+#, fuzzy
+#| msgid "Table must have at least one field."
+msgid "Table must have at least one column"
+msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт."
+
+#: js/messages.php:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Жадвал тузиш"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Жадвалларни ишлатиш"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Қидириш"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide search results"
+msgstr "SQL сўровлари қутиси"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show search results"
+msgstr "SQL сўровлари қутиси"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Кўриб чиқиш"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "\"%s\" ўчирилмоқда"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide query box"
+msgstr "SQL сўровлари қутиси"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show query box"
+msgstr "SQL сўровлари қутиси"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Жадвал турлари"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1287,79 +1331,79 @@ msgstr "Таҳрирлаш"
msgid "Save"
msgstr "Сақлаш"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Яшириш"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Эътибор бермаслик"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Боғлиқ калитни танланг"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Ташқи калитни танланг"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Кўрсатиладиган майдонни танлаш"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Парол ўрнатиш"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генерация қилиш"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Паролни ўзгартириш"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Душ"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1370,131 +1414,131 @@ msgstr ""
"чиқарилган."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Охирги версияни текшириш"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ушбу базага ўтиш"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Садақа"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Орқага"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Кейинги"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Жами"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Иккилик"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Мар"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Апр"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "Май"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Июн"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Июл"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Авг"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Окт"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1502,178 +1546,178 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Якш"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Душ"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Сеш"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Жум"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Якш"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Душ"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Сеш"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Чор"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Пай"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Жум"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Шан"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Якш"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Душ"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Сеш"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Чор"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пай"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Жум"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Шан"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Вики"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ишлатилмоқда"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1770,7 +1814,7 @@ msgstr " %1$s ва %2$s индекслари бир хил, улардан би
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Маълумотлар базалари"
@@ -1843,25 +1887,25 @@ msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверд
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Нотўғри маълумотлар базаси"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Жадвал номи нотўғри"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди."
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1893,10 +1937,9 @@ msgstr " \"%s\" мавзуси топилмади!"
msgid "Theme path not found for theme %s!"
msgstr " \"%s\" мавзуси файлларига йўл топилмади!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Мавзу / Услуб"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1904,7 +1947,6 @@ msgstr "Уланиб бўлмади: нотўғри созланган."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "\"%s\" дастурига хуш келибсиз"
@@ -2060,7 +2102,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Жадваллар"
@@ -2153,7 +2195,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Сервер"
@@ -2202,7 +2243,7 @@ msgid "Documentation"
msgstr "Документация"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL сўрови"
@@ -2210,125 +2251,125 @@ msgstr "SQL сўрови"
msgid "MySQL said: "
msgstr "MySQL жавоби: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "MySQL-серверга уланиб бўлмади"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "Сўров таҳлили"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Таҳлил керак эмас"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP-код олиб ташлаш"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Янгилаш"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL синтаксиси текширувини олиб ташлаш"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL тўғрилигини текшириш"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Жадвал турлари"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Профиллаштириш"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Байт"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "КБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "МБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "ГБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "ТБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "ПБ"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "ЭБ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y й., %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Боши"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Орқага"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Охири"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr " \"%s\" маълумотлар базасига ўтиш"
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил "
"маълумот учун қаранг \"%s\""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2340,42 +2381,42 @@ msgstr ""
msgid "Structure"
msgstr "Тузилиши"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Қўйиш"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Операциялар"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "Юклаш каталогидан"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Кўрсатилган каталокка юклаб бўлмади"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2757,7 +2798,7 @@ msgstr "Жадвал ёрлиғи"
msgid "Show binary contents as HEX by default"
msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш"
@@ -4937,7 +4978,7 @@ msgstr "Дизайнер"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Привилегиялар"
@@ -4949,7 +4990,7 @@ msgstr "Муолажалар"
msgid "Return type"
msgstr "Қайтариладиган тип"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5171,9 +5212,9 @@ msgstr "Файл кодировкаси: "
msgid "Compression:"
msgstr "Сиқиш"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Йўқ"
@@ -5331,39 +5372,59 @@ msgstr ""
msgid "Language"
msgstr "Тил"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "CHAR textarea columns"
+msgid "Restore column order"
+msgstr "CHAR майдонидаги устунлар сони"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Танлаш учун сичқонча тугмасини босинг"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr " %d сони тўғри қатор рақами эмас!"
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "та қатор қуйидаги қатордан бошлаб "
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "горизонтал"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "горизонтал (айлантирилган сарлавҳалар)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "вертикал"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "\"%s\" режимида ва сарлавҳаларни ҳар \"%s\" катакчадан кейин такрорлаш"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Индекс бўйича сортировка қилиш"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5376,102 +5437,102 @@ msgstr "Индекс бўйича сортировка қилиш"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Параметрлар"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Маълумотларни қисқартириб кўрсатиш"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Алоқадор калит"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Алоқадор майдон қиймати"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Иккилик маълумотларни кўрсатиш"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "BLOB туридаги маълумотларни кўрсатиш"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "Ўгириш"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Ёзув ўчирилди"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Тугатиш"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "сўров бўйича"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Ёзувларни кўрсатиш"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "жами"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "Сўров %01.4f секунд вақт олди"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ўзгартириш"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "Сўров натижаларини ишлатиш"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Чоп этиш версияси (тўла)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-схемани кўрсатиш"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Версиясини тузиш"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Алоқа топилмади"
@@ -5519,7 +5580,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буфер пули"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB аҳволи"
@@ -6041,7 +6102,7 @@ msgstr "Мавжуд MIME турлари"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Хост"
@@ -6250,7 +6311,7 @@ msgstr "SQL сўрови натижаси"
msgid "Generated by"
msgstr "Тузилган"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL бўш натижа берди (яъни нольта сатр)."
@@ -6425,7 +6486,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Индекс(лар)ни сақлаш"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "Ўзгариш йўқ"
@@ -6764,14 +6825,14 @@ msgid "Slave status"
msgstr "Тобе сервер статуси"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "Ўзгарувчи"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Қиймати"
@@ -7017,20 +7078,20 @@ msgid "Synchronize"
msgstr "Синхронизация қилиш"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Иккилик журнал"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "Ўзгарувчилар"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Кодировкалар"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Жадвал турлари"
@@ -7077,11 +7138,11 @@ msgstr "Тозалаш"
msgid "Columns"
msgstr "Майдон номлари"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Ушбу SQL сўровига хатчўп тузиш"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Барча фойдаланувчиларга рухсат бериш"
@@ -7319,7 +7380,7 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш"
msgid "+ Add a new value"
msgstr "Янги фойдаланувчи қўшиш"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Вақт"
@@ -7567,7 +7628,7 @@ msgid "Protocol version"
msgstr "Протокол версияси"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Фойдаланувчи"
@@ -7873,7 +7934,7 @@ msgstr "Тузиш"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Оператор"
@@ -8075,17 +8136,17 @@ msgstr "\"%s\" жадвали мавжуд эмас!"
msgid "Select binary log to view"
msgstr "Кўриш учун бинар журнални танланг"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Файллар сони "
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "Сўровларни қисқартириб кўрсатиш"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "Сўровларнинг кенгайтирилган кўриниши"
@@ -8632,7 +8693,7 @@ msgstr "Бош репликация сервери қуйидагига ўзга
msgid "This server is configured as master in a replication process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Уланган бош серверларни кўрсатиш"
@@ -8793,179 +8854,164 @@ msgstr ""
"Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация "
"қилинмаган. Сиз уни конфигурация қилмоқчимисиз?"
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr " \"%s\" жараёни муваффақиятли якунланди."
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ."
-
-#: server_status.php:230
-msgid "Handler"
-msgstr "Қайта ишловчи дастур"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "Сўровлар кеши"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "Оқимлар"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "Вақтинчалик маълумотлар"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "Кечиктирилган қўйилмалар"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "Индекс кеши"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "Бирлашишлар"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "Сортировка"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "Транзакциялар координатори"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "Барча жадвалларни ёпиш"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "Очиқ жадваллар рўйхати"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "Тобе серверлар ҳақида маълумот"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "Репликация сервери аҳволи ҳақида маълумот"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "Сўровлар кешини дефрагментация қилиш"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "MySQL-сервернинг ҳозирги ҳолати"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "Серверни танланг"
-
-#: server_status.php:368
-#, fuzzy
-#| msgid "Show statistics"
-msgid "Query statistics"
-msgstr "Статискани кўрсатиш"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
-msgid "All status variables"
-msgstr "Тобе сервер статуси жадвалини кўриш"
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Янгилаш"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "секундига"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "секундига"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "in use"
-msgid "minutes"
-msgstr "ишлатилмоқда"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "ишлатилмоқда"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "секундига"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr " \"%s\" жараёни муваффақиятли якунланди."
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ."
+
+#: server_status.php:263
+msgid "Handler"
+msgstr "Қайта ишловчи дастур"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "Сўровлар кеши"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "Оқимлар"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "Вақтинчалик маълумотлар"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "Кечиктирилган қўйилмалар"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "Индекс кеши"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "Бирлашишлар"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "Сортировка"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "Транзакциялар координатори"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "Барча жадвалларни ёпиш"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "Очиқ жадваллар рўйхати"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "Тобе серверлар ҳақида маълумот"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "Репликация сервери аҳволи ҳақида маълумот"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "Сўровлар кешини дефрагментация қилиш"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "MySQL-сервернинг ҳозирги ҳолати"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "Серверни танланг"
+
+#: server_status.php:402
+#, fuzzy
+#| msgid "See slave status table"
+msgid "All status variables"
+msgstr "Тобе сервер статуси жадвалини кўриш"
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Паролни ўзгартирмаслик"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Алоқалар"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "соатига"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "минутига"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "секундига"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "Сўров тури"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"."
-#: server_status.php:627
+#: server_status.php:636
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -8973,19 +9019,19 @@ msgid ""
"b> process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_status.php:629
+#: server_status.php:638
#, 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:631
+#: server_status.php:640
#, 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:633
+#: server_status.php:642
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -8993,21 +9039,21 @@ msgstr "Ушбу сервер репликация жараёнида \"бош\"
#| "href=\"#replication\">replication section."
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Ушбу MySQL сервери <b>репликация</b> жараёнида \\\"%s\\\" "
"сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот "
"учун, <a href=\"#replication\">репликация бўлими</a>га киринг."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Репликация статуси"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Трафик"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9015,45 +9061,41 @@ msgstr ""
"Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг "
"учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Қабул қилинди"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Юборилди"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Уланишлар"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Максимал уланишлар сони "
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Муваффақиятсиз уринишлар сони: "
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Узилди"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Жараёнлар"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -9062,16 +9104,16 @@ msgstr ""
"Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз "
"ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони."
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Бинар журнал кешини ишлатган транзакциялар сони."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -9084,11 +9126,11 @@ msgstr ""
"сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини "
"ошириш тавсия этилади."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9096,7 +9138,7 @@ msgstr ""
"Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик "
"тузилган вақтинчалик жадваллар сони."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9104,31 +9146,31 @@ msgstr ""
"\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар "
"(масалан, калитлар такрорланиши оқибатида) сони."
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган "
"қаторлар сони."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Бажарилган \"FLUSH\" буйруқлар сони."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Ички \"COMMIT\" буйруқлари сони."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -9138,7 +9180,7 @@ msgstr ""
"бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган "
"жадваллар сони."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -9147,7 +9189,7 @@ msgstr ""
"Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати "
"катта бўлса, сервер бир неча маротиба индексни кўриб чиқади."
-#: server_status.php:855
+#: server_status.php:864
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."
@@ -9156,7 +9198,7 @@ msgstr ""
"Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан "
"далолат беради."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -9166,7 +9208,7 @@ msgstr ""
"Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш "
"вақтида ўзгарувчи қиймати ошади."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9175,7 +9217,7 @@ msgstr ""
"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... "
"DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -9188,7 +9230,7 @@ msgstr ""
"чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри "
"фойдаланадиган бирлашмаларнинг мавжудлиги."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -9200,35 +9242,35 @@ msgstr ""
"индексланганлигини ёки сўровлар индексларнинг афзалликларидан "
"фойдаланмаётганлигини билдиради."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "ROLLBACK ички буйруқлар сони."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони."
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони."
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "\"Кир\" саҳифаларнинг жорий сони."
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони."
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Бўш саҳифалар сони."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -9238,7 +9280,7 @@ msgstr ""
"устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра "
"тозалаш ёки ўчириш имконияти йўқ."
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -9250,11 +9292,11 @@ msgstr ""
"\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data\"."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -9263,7 +9305,7 @@ msgstr ""
"сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй "
"беради."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9272,12 +9314,12 @@ msgstr ""
"сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй "
"беради"
-#: server_status.php:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr ""
"InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони."
-#: server_status.php:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9285,7 +9327,7 @@ msgstr ""
"InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга "
"бўлган кетма-кет сўровлар сони."
-#: server_status.php:874
+#: server_status.php:883
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,51 +9340,51 @@ msgstr ""
"Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми "
"тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Тугалланмаган \"fsync()\" операциялари сони."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Тугалланмаган ўқиш операциялари сони."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Тугалланмаган ёзиш операциялари сони."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Умумий маълумотларни ўқиш операциялари сони."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Умумий маълумотларни ёзиш операциялари сони."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "Бажарилган \"doublewrite\" операциялари сони."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -9350,35 +9392,35 @@ msgstr ""
"Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган "
"ёзувлар сони"
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Журналга ёзишга бўлган сўровларсони."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Журнал файлидаги жисмоний ёзувлар сони."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Тугалланмаган журналга ёзиш сўровлари сони."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Тузилган саҳифалар сони."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9387,51 +9429,51 @@ msgstr ""
"Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, "
"уларни байтларга ўтказиш мумкин."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "Ўқилган саҳифалар сони."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Ёзилган саҳифалар сони."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Ҳозирда кутилаётган қатор блокировкалари сони."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Умумий кутилаётган қатор блокировкалари сони."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB жадвалидан ўчирилган қаторлар сони."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB жадвалига ёзилган қаторлар сони."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB жадвалларидан ўқилган қаторлар сони."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB жадвалларида янгиланган қаторлар сони."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9439,7 +9481,7 @@ msgstr ""
"Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. "
"Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум."
-#: server_status.php:907
+#: server_status.php:916
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."
@@ -9447,7 +9489,7 @@ msgstr ""
"Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши "
"ишлатилиш даражасини белгилайди."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -9456,11 +9498,11 @@ msgstr ""
"Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида "
"ишлатилиши мумкин бўлган блоклар сонини билдиради."
-#: server_status.php:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони."
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -9471,15 +9513,15 @@ msgstr ""
"қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти "
"қуйидагича ҳисобланди: Key_reads/Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони."
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -9490,19 +9532,19 @@ msgstr ""
"эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров "
"компиляция жараёни бажарилмаганлигини билдиради."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" "
"сўровларида қўйилишини кутаётган қаторлар сони."
-#: server_status.php:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9510,42 +9552,42 @@ msgstr ""
"Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта "
"бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Очиқ файллар сони."
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen"
"()\" функцияси ёрдамида очилган файлга айтилади."
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Очиқ жадваллар сони."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "Сўровлар кеши учун бўш хотира ҳажми"
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr ""
"Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан "
"қониқтирилган сўровлар сони."
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "Сўровлар кешига қўшилган сўровлар сони."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9557,7 +9599,7 @@ msgstr ""
"кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги "
"ишлатилган) стратегиясидан фойдаланади"
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9565,19 +9607,19 @@ msgstr ""
"Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида "
"сўндирилган сўровлар сони."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Кешда регистрация қилинган сўровлар сони."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9585,13 +9627,13 @@ msgstr ""
"Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати "
"0 бўлмаса, жадвал индексларини текшириш тавсия этилади."
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда "
"бажарилган бирлашма сўровлар сони."
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -9600,7 +9642,7 @@ msgstr ""
"ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 "
"бўлмаса, жадвал индексларини текшириш тавсия этилади."
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9609,17 +9651,17 @@ msgstr ""
"сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса "
"ҳам, унчалик муҳим эмас."
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr ""
"Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган "
"бирлашма сўровлар сони."
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони."
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9627,13 +9669,13 @@ msgstr ""
"Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта "
"транзакцияларнинг умумий сони."
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган "
"бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади."
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9641,12 +9683,12 @@ msgstr ""
"Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар "
"сони."
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони."
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -9656,25 +9698,25 @@ msgstr ""
"қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш "
"зарур."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Сортировка қилинган қаторлар сони"
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr ""
"Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари "
"сони."
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони."
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -9686,7 +9728,7 @@ msgstr ""
"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал"
"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9697,11 +9739,11 @@ msgstr ""
"ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" "
"ўзгарувчисининг қийматини ошириш зарур."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Очиқ жорий уланишлар сони."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9713,7 +9755,7 @@ msgstr ""
"ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам "
"оширмайди)."
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Фаол ҳолатда бўлган жараёнлар сони."
@@ -9839,7 +9881,7 @@ msgstr "Сервер ўзгарувчилари ва созланишлари"
msgid "Session value"
msgstr "Сессия қийматлари"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Глобал қиймат"
@@ -10222,41 +10264,41 @@ msgstr "Калит жуда қисқа, у камида 8 та белгидан
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус белгиларни олиши керак"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Ташқи қийматларни кўриб чиқиш"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Киритилган қатор идентификатори: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP-код сифатида кўрсатиш"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "SQL-сўровни кўрсатиш"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL тўғрилигини текшириш"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr " `\"%s\"` жадвалидаги индексларда муаммо мавжуд"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Хатчўп белгиси"
@@ -10650,25 +10692,25 @@ msgstr "Ташқи калит чегаралари"
msgid "No rows selected"
msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак. "
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Майдонни танланг (камида битта):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Саҳифадаги қаторлар сони "
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Сортировка:"
@@ -10971,8 +11013,12 @@ msgstr "Ном кўриниши"
msgid "Rename view to"
msgstr "Кўриниш номини ўзгартириш"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Мавзу / Услуб"
+
+#~ msgid "seconds"
+#~ msgstr "секундига"
+
#~ msgid "Query results"
#~ msgstr "Сўров натижаларини ишлатиш"
@@ -10986,8 +11032,6 @@ msgstr "Кўриниш номини ўзгартириш"
#~ msgid "Show processes"
#~ msgstr "Жараёнлар рўйхати"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Тозалаш"
@@ -11006,15 +11050,9 @@ msgstr "Кўриниш номини ўзгартириш"
#~ "Сўровлар статискаси: ишга туширилгандан вақтдан бошлаб серверга юборилган "
#~ "сўровлар сони - \"%s\"."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Привилегиялар муваффақиятли қайта юкланди."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -11022,31 +11060,21 @@ msgstr "Кўриниш номини ўзгартириш"
#~ "Тахминий бўлиши мумкин. [a@./Documentation."
#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "Сўров тури"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Янги фойдаланувчи қўшиш"
-#, fuzzy
-#~| msgid "Create version"
#~ msgid "Create User"
#~ msgstr "Версиясини тузиш"
#~ msgid "Add a new User"
#~ msgstr "Янги фойдаланувчи қўшиш"
-#, fuzzy
-#~| msgid "Show logo in left frame"
#~ msgid "Show table row links on left side"
#~ msgstr "Чап рамкада логотипни кўрсатиш"
-#, fuzzy
-#~| msgid "Delete tracking data for this table"
#~ msgid "Delete the matches for the "
#~ msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index e7882d78a3..ae94047e79 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_latin \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "Barchasini ko‘rsatish"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -38,23 +38,23 @@ msgstr ""
"yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka "
"qilmoqda"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "Qidirish"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -71,7 +71,7 @@ msgstr "Qidirish"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -84,7 +84,7 @@ msgstr "Indeks nomi"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "Tavsifi"
@@ -137,7 +137,7 @@ msgstr "Jadval izohi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -152,7 +152,7 @@ msgstr "Maydon nomlari"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "Tur"
@@ -168,7 +168,7 @@ msgstr "Tur"
msgid "Null"
msgstr "Null"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -197,7 +197,7 @@ msgstr "Aloqalar"
msgid "Comments"
msgstr "Izohlar"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -208,12 +208,12 @@ msgstr "Izohlar"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Yo‘q"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -228,7 +228,7 @@ msgstr "Yo‘q"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -247,11 +247,11 @@ msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish"
msgid "No tables found in database."
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "Barchasini belgilash"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "Belgilashni bekor qilish"
@@ -273,7 +273,7 @@ msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi."
msgid "Rename database to"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "Buyruq"
@@ -338,7 +338,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -368,7 +368,7 @@ msgstr "Aloqalar sxemasi"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "Jadval "
@@ -384,7 +384,7 @@ msgstr "Qatorlarsoni"
msgid "Size"
msgstr "Hajmi"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "ishlatilmoqda"
@@ -410,7 +410,7 @@ msgstr "Oxirgi yangilanish"
msgid "Last check"
msgstr "Oxirgi tekshiruv"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -431,25 +431,25 @@ msgid "visual builder"
msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "Sortirovka qilish"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "O‘sish tartibida"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "Kamayish tartibida"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Ko‘rsatish"
@@ -472,7 +472,7 @@ msgstr "O‘chirish"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "Yoki"
@@ -505,39 +505,39 @@ msgstr "Jadvallarni ishlatish"
msgid "SQL query on database %s :"
msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: "
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "so‘rovni bajarish"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "Ruxsat berilmadi"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "so‘zlardan biri"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "barcha so‘zlar"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "aniq moslik"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "muntazam ibora"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "\"\"%s\" \" uchun qidiruv natijalari \"%s\":"
-#: db_search.php:247
+#: db_search.php:249
#, fuzzy, php-format
#| msgid "%s match(es) inside table %s "
msgid "%s match inside table %s "
@@ -545,20 +545,20 @@ msgid_plural "%s matches inside table %s "
msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Ko‘rib chiqish"
-#: db_search.php:259
+#: db_search.php:261
#, fuzzy, php-format
#| msgid "Delete tracking data for this table"
msgid "Delete the matches for the %s table?"
msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -569,7 +569,7 @@ msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
msgid "Delete"
msgstr "O‘chirish"
-#: db_search.php:272
+#: db_search.php:274
#, fuzzy, php-format
#| msgid "Total: %s match(es)"
msgid "Total: %s match"
@@ -577,63 +577,63 @@ msgid_plural "Total: %s matches"
msgstr[0] "Jami: \"%s\" o‘xshashlik"
msgstr[1] "Jami: \"%s\" o‘xshashlik"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "Ma`lumotlar bazasida qidirish"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr ""
"Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "Izlash:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan."
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "Quyidagi jadval(lar)da qidirish:"
-#: db_search.php:351
+#: db_search.php:353
#, fuzzy
#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Quyidagi maydon(lar)da qidirish: "
-#: db_structure.php:59
+#: db_structure.php:60
#, fuzzy
#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "\"%s\" jadvali tozalandi"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr " \"%s\" namoyishi o‘chirildi"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "\"%s\" jadvali o‘chirildi"
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "Kuzatish faol."
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "Kuzatish faol emas."
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
@@ -642,112 +642,112 @@ msgstr ""
"Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "Namoyish"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "Replikatsiya (zaxira nusxa ko‘chirish)"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "Jami"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi."
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Belgilanganlarni: "
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Barchasini belgilash"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Belgilashni bekor qilish"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "Chop etish versiyasi"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "Tozalash"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "O‘chirish"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "Jadvalni tekshirish"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "Jadvalni optimallashtirish"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "Jadvalni tiklash"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "Jadval tahlili"
-#: db_structure.php:521
+#: db_structure.php:522
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "Ushbu jadvalga o‘tish"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Ma`lumotlar lug‘ati"
@@ -762,9 +762,9 @@ msgstr "Kuzatilgan jadvallar"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "Ma`lumotlar bazasi"
@@ -780,8 +780,8 @@ msgstr "Tuzildi"
msgid "Updated"
msgstr "Yangilandi"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "Holat"
@@ -928,7 +928,7 @@ msgstr "Xatcho‘p o‘chirildi."
msgid "Showing bookmark"
msgstr "Xatcho‘plarni ko‘rsatish"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" xatcho‘pi tuzildi"
@@ -957,7 +957,7 @@ msgstr ""
"phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi."
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -985,16 +985,16 @@ msgstr "Tanlash uchun sichqoncha tugmasini bosing"
msgid "Click to unselect"
msgstr "Tanlashni bеkor qilish uchun sichqoncha tugmasini bosing"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
"\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan."
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"
@@ -1101,190 +1101,234 @@ msgstr "Belgilangan foydalanuvchilarni o‘chirish"
msgid "Close"
msgstr "Yopish"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "Serverni tanlang"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Live query chart"
-msgstr "SQL so‘rovlari qutisi"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "Jami"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr " "
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr ","
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-#, fuzzy
-#| msgid "Load"
-msgid "Loading"
-msgstr "Yuklash"
-
-#: js/messages.php:84
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Jarayonlar"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-
-#: js/messages.php:92
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-
-#: js/messages.php:93
-#, fuzzy
-#| msgid "Copy database to"
-msgid "Copying Database"
-msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish"
-
-#: js/messages.php:94
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Kodirovka"
-
-#: js/messages.php:95
-#, 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:96
-#, fuzzy
-#| msgid "Create table"
-msgid "Create Table"
-msgstr "Jadval tuzish"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "Jadvallarni ishlatish"
-
-#: js/messages.php:104
-#, fuzzy
-#| msgid "Search"
-msgid "Searching"
-msgstr "Qidirish"
-
-#: js/messages.php:105
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide search results"
-msgstr "SQL so‘rovlari qutisi"
-
-#: js/messages.php:106
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show search results"
-msgstr "SQL so‘rovlari qutisi"
-
-#: js/messages.php:107
-#, fuzzy
-#| msgid "Browse"
-msgid "Browsing"
-msgstr "Ko‘rib chiqish"
-
-#: js/messages.php:108
-#, fuzzy
-#| msgid "Deleting %s"
-msgid "Deleting"
-msgstr "\"%s\" o‘chirilmoqda"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide query box"
-msgstr "SQL so‘rovlari qutisi"
-
-#: js/messages.php:115
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show query box"
-msgstr "SQL so‘rovlari qutisi"
-
-#: js/messages.php:116
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Jadval turlari"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tahrirlash"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "Serverni tanlang"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Live query chart"
+msgstr "SQL so‘rovlari qutisi"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "Jami"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr " "
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr ","
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "Serverni tanlang"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "Jarayonlar"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "Ulanishlar"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL so‘rovlari"
+
+#: js/messages.php:89 server_status.php:401
+#, fuzzy
+#| msgid "Show statistics"
+msgid "Query statistics"
+msgstr "Statiskani ko‘rsatish"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+#, fuzzy
+#| msgid "Load"
+msgid "Loading"
+msgstr "Yuklash"
+
+#: js/messages.php:97
+#, fuzzy
+#| msgid "Processes"
+msgid "Processing Request"
+msgstr "Jarayonlar"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr ""
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr ""
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr ""
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Renaming Databases"
+msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Rename database to"
+msgid "Reload Database"
+msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
+
+#: js/messages.php:106
+#, fuzzy
+#| msgid "Copy database to"
+msgid "Copying Database"
+msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish"
+
+#: js/messages.php:107
+#, fuzzy
+#| msgid "Charset"
+msgid "Changing Charset"
+msgstr "Kodirovka"
+
+#: js/messages.php:108
+#, 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:109
+#, fuzzy
+#| msgid "Create table"
+msgid "Create Table"
+msgstr "Jadval tuzish"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "Jadvallarni ishlatish"
+
+#: js/messages.php:117
+#, fuzzy
+#| msgid "Search"
+msgid "Searching"
+msgstr "Qidirish"
+
+#: js/messages.php:118
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide search results"
+msgstr "SQL so‘rovlari qutisi"
+
+#: js/messages.php:119
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show search results"
+msgstr "SQL so‘rovlari qutisi"
+
+#: js/messages.php:120
+#, fuzzy
+#| msgid "Browse"
+msgid "Browsing"
+msgstr "Ko‘rib chiqish"
+
+#: js/messages.php:121
+#, fuzzy
+#| msgid "Deleting %s"
+msgid "Deleting"
+msgstr "\"%s\" o‘chirilmoqda"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Hide query box"
+msgstr "SQL so‘rovlari qutisi"
+
+#: js/messages.php:128
+#, fuzzy
+#| msgid "SQL Query box"
+msgid "Show query box"
+msgstr "SQL so‘rovlari qutisi"
+
+#: js/messages.php:129
+#, fuzzy
+#| msgid "Engines"
+msgid "Inline Edit"
+msgstr "Jadval turlari"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1292,80 +1336,80 @@ msgstr "Tahrirlash"
msgid "Save"
msgstr "Saqlash"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Yashirish"
-#: js/messages.php:122
+#: js/messages.php:135
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:123
+#: js/messages.php:136
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "E`tibor bermaslik"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "Bog‘liq kalitni tanlang"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "Tashqi kalitni tanlang"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr ""
"Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 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:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:139
+#: js/messages.php:152
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Parol o‘rnatish"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generatsiya qilish"
-#: js/messages.php:141
+#: js/messages.php:154
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolni o‘zgartirish"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dush"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1376,131 +1420,131 @@ msgstr ""
"sanada chiqarilgan."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Oxirgi versiyani tekshirish"
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ushbu bazaga o‘tish"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Sadaqa"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Orqaga"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "Keyingi"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jami"
-#: js/messages.php:177
+#: js/messages.php:190
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Ikkilik"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr ""
-#: js/messages.php:179
+#: js/messages.php:192
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:180
+#: js/messages.php:193
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "May"
-#: js/messages.php:182
+#: js/messages.php:195
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Iyun"
-#: js/messages.php:183
+#: js/messages.php:196
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Iyul"
-#: js/messages.php:184
+#: js/messages.php:197
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avg"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:199
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "Yanv"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1508,178 +1552,178 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "Iyun"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "Iyul"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "Avg"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "Noya"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:217
+#: js/messages.php:230
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Yaksh"
-#: js/messages.php:218
+#: js/messages.php:231
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dush"
-#: js/messages.php:219
+#: js/messages.php:232
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sesh"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr ""
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr ""
-#: js/messages.php:222
+#: js/messages.php:235
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "Yaksh"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "Dush"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "Sesh"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "Chor"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "Pay"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "Shan"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Yaksh"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dush"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sesh"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Chor"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pay"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Shan"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Viki"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr ""
-#: js/messages.php:260
+#: js/messages.php:273
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ishlatilmoqda"
-#: js/messages.php:261
+#: js/messages.php:274
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1776,7 +1820,7 @@ msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "Ma`lumotlar bazalari"
@@ -1849,25 +1893,25 @@ msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi."
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "Noto‘g‘ri ma`lumotlar bazasi"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "Jadval nomi noto‘g‘ri"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi."
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1899,10 +1943,9 @@ msgstr " \"%s\" mavzusi topilmadi!"
msgid "Theme path not found for theme %s!"
msgstr " \"%s\" mavzusi fayllariga yo‘l topilmadi!"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "Mavzu / Uslub"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1910,7 +1953,6 @@ msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "\"%s\" dasturiga xush kelibsiz"
@@ -2066,7 +2108,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "Jadvallar"
@@ -2160,7 +2202,6 @@ msgstr ""
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "Server"
@@ -2210,7 +2251,7 @@ msgid "Documentation"
msgstr "Dokumentatsiya"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL so‘rovi"
@@ -2218,125 +2259,125 @@ msgstr "SQL so‘rovi"
msgid "MySQL said: "
msgstr "MySQL javobi: "
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "MySQL-serverga ulanib bo‘lmadi"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "So‘rov tahlili"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "Tahlil kerak emas"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "PHP-kod olib tashlash"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "PHP-kod"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "Yangilash"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "SQL sintaksisi tekshiruvini olib tashlash"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "SQL to‘g‘riligini tekshirish"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
#, fuzzy
#| msgid "Engines"
msgid "Inline"
msgstr "Jadval turlari"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "Profillashtirish"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "Bayt"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y y., %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "Boshi"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "Orqaga"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "Oxiri"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr " \"%s\" ma`lumotlar bazasiga o‘tish"
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil "
"ma`lumot uchun qarang \"%s\""
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2348,42 +2389,42 @@ msgstr ""
msgid "Structure"
msgstr "Tuzilishi"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "Qo‘yish"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "Operatsiyalar"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "Yuklash katalogidan"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr ""
@@ -2766,7 +2807,7 @@ msgstr "Jadval yorlig‘i"
msgid "Show binary contents as HEX by default"
msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish"
@@ -4958,7 +4999,7 @@ msgstr "Dizayner"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "Privilegiyalar"
@@ -4970,7 +5011,7 @@ msgstr "Muolajalar"
msgid "Return type"
msgstr "Qaytariladigan tip"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5192,9 +5233,9 @@ msgstr "Fayl kodirovkasi: "
msgid "Compression:"
msgstr "Siqish"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "Yo‘q"
@@ -5353,40 +5394,60 @@ msgstr ""
msgid "Language"
msgstr "Til"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "CHAR textarea columns"
+msgid "Restore column order"
+msgstr "CHAR maydonidagi ustunlar soni"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "Tanlash uchun sichqoncha tugmasini bosing"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr " %d soni to‘g‘ri qator raqami emas!"
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
#, fuzzy
#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "ta qator quyidagi qatordan boshlab "
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "gorizontal"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "gorizontal (aylantirilgan sarlavhalar)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "vertikal"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
"\"%s\" rejimida va sarlavhalarni har \"%s\" katakchadan keyin takrorlash"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "Indeks bo‘yicha sortirovka qilish"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -5399,102 +5460,102 @@ msgstr "Indeks bo‘yicha sortirovka qilish"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "Parametrlar"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Ma`lumotlarni qisqartirib ko‘rsatish"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "Aloqador kalit"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Aloqador maydon qiymati"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "Ikkilik ma`lumotlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "O‘girish"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "Yozuv o‘chirildi"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "Tugatish"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "so‘rov bo‘yicha"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "Yozuvlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "jami"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "So‘rov %01.4f sekund vaqt oldi"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "O‘zgartirish"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "So‘rov natijalarini ishlatish"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "Chop etish versiyasi (to‘la)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-sxemani ko‘rsatish"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Vеrsiyasini tuzish"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "Aloqa topilmadi"
@@ -5543,7 +5604,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer puli"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB ahvoli"
@@ -6067,7 +6128,7 @@ msgstr "Mavjud MIME turlari"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "Xost"
@@ -6277,7 +6338,7 @@ msgstr "SQL so‘rovi natijasi"
msgid "Generated by"
msgstr "Tuzilgan"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: 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)."
@@ -6453,7 +6514,7 @@ msgstr ""
msgid "Add prefix"
msgstr "Indеks(lar)ni saqlash"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "O‘zgarish yo‘q"
@@ -6794,14 +6855,14 @@ msgid "Slave status"
msgstr "Tobе rеplikatsiya sеrvеri statusi"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "O‘zgaruvchi"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "Qiymati"
@@ -7047,20 +7108,20 @@ msgid "Synchronize"
msgstr "Sinxronizatsiya qilish"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "Ikkilik jurnal"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "O‘zgaruvchilar"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "Kodirovkalar"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "Jadval turlari"
@@ -7107,11 +7168,11 @@ msgstr "Tozalash"
msgid "Columns"
msgstr "Maydon nomlari"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "Barcha foydalanuvchilarga ruxsat berish"
@@ -7351,7 +7412,7 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash"
msgid "+ Add a new value"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "Vaqt"
@@ -7602,7 +7663,7 @@ msgid "Protocol version"
msgstr "Protokol versiyasi"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "Foydalanuvchi"
@@ -7909,7 +7970,7 @@ msgstr "Tuzish"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "Operator"
@@ -8113,17 +8174,17 @@ msgstr "\"%s\" jadvali mavjud emas!"
msgid "Select binary log to view"
msgstr "Ko‘rish uchun binar jurnalni tanlang"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "Fayllar soni "
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "So‘rovlarni qisqartirib ko‘rsatish"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "So‘rovlarning kengaytirilgan ko‘rinishi"
@@ -8678,7 +8739,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:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish"
@@ -8840,181 +8901,166 @@ msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya "
"qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?"
-#: server_status.php:101
+#: server_status.php:27
+#, fuzzy
+#| msgid "Refresh"
+msgid "Refresh rate"
+msgstr "Yangilash"
+
+#: server_status.php:31
+#, fuzzy, php-format
+#| msgid "in use"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "ishlatilmoqda"
+
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "per second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "sekundiga"
+
+#: server_status.php:134
#, php-format
msgid "Thread %s was successfully killed."
msgstr " \"%s\" jarayoni muvaffaqiyatli yakunlandi."
-#: server_status.php:103
+#: server_status.php:136
#, 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:230
+#: server_status.php:263
msgid "Handler"
msgstr "Qayta ishlovchi dastur"
-#: server_status.php:231
+#: server_status.php:264
msgid "Query cache"
msgstr "So‘rovlar keshi"
-#: server_status.php:232
+#: server_status.php:265
msgid "Threads"
msgstr "Oqimlar"
-#: server_status.php:234
+#: server_status.php:267
msgid "Temporary data"
msgstr "Vaqtinchalik ma`lumotlar"
-#: server_status.php:235
+#: server_status.php:268
msgid "Delayed inserts"
msgstr "Kechiktirilgan qo‘yilmalar"
-#: server_status.php:236
+#: server_status.php:269
msgid "Key cache"
msgstr "Indeks keshi"
-#: server_status.php:237
+#: server_status.php:270
msgid "Joins"
msgstr "Birlashishlar"
-#: server_status.php:239
+#: server_status.php:272
msgid "Sorting"
msgstr "Sortirovka"
-#: server_status.php:241
+#: server_status.php:274
msgid "Transaction coordinator"
msgstr "Tranzaksiyalar koordinatori"
-#: server_status.php:252
+#: server_status.php:285
msgid "Flush (close) all tables"
msgstr "Barcha jadvallarni yopish"
-#: server_status.php:254
+#: server_status.php:287
msgid "Show open tables"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:259
+#: server_status.php:292
msgid "Show slave hosts"
msgstr "Tobe serverlar haqida ma`lumot"
-#: server_status.php:265
+#: server_status.php:298
msgid "Show slave status"
msgstr "Replikatsiya serveri ahvoli haqida ma`lumot"
-#: server_status.php:270
+#: server_status.php:303
msgid "Flush query cache"
msgstr "So‘rovlar keshini defragmentatsiya qilish"
-#: server_status.php:362
+#: server_status.php:395
msgid "Runtime Information"
msgstr "MySQL-serverning hozirgi holati"
-#: server_status.php:367
+#: server_status.php:400
#, fuzzy
#| msgid "Server Choice"
msgid "Server traffic"
msgstr "Serverni tanlang"
-#: server_status.php:368
-#, fuzzy
-#| msgid "Show statistics"
-msgid "Query statistics"
-msgstr "Statiskani ko‘rsatish"
-
-#: server_status.php:369
+#: server_status.php:402
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Tobе sеrvеr statusi jadvalini ko‘rish"
-#: server_status.php:379 server_status.php:410
-#, fuzzy
-#| msgid "Refresh"
-msgid "Refresh rate"
-msgstr "Yangilash"
-
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "per second"
-msgid "second"
-msgstr "sekundiga"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "per second"
-msgid "seconds"
-msgstr "sekundiga"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
-#| msgid "in use"
-msgid "minutes"
-msgstr "ishlatilmoqda"
-
-#: server_status.php:440
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Parolni o‘zgartirmaslik"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Aloqalar"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "soatiga"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "minutiga"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "sekundiga"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "So‘rov turi"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
"MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"."
-#: server_status.php:627
+#: server_status.php:636
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -9023,21 +9069,21 @@ msgid ""
msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan."
-#: server_status.php:629
+#: server_status.php:638
#, 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:631
+#: server_status.php:640
#, 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:633
+#: server_status.php:642
#, fuzzy
#| msgid ""
#| "This MySQL server works as %s in replication process. For further "
@@ -9045,22 +9091,22 @@ msgstr ""
#| "href=\"#replication\">replication section."
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
"Ushbu MySQL serveri <b>replikatsiya</b> jarayonida \"%s\" "
"sifatida ishlaydi. Serverning replikatsiya statusi haqida batafsil ma`lumot "
"uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga "
"kiring."
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "Replikatsiya statusi"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "Trafik"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9069,45 +9115,41 @@ msgstr ""
"shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi "
"mumkin."
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "Qabul qilindi"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "Yuborildi"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "Ulanishlar"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "Maksimal ulanishlar soni "
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "Muvaffaqiyatsiz urinishlar soni: "
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "Uzildi"
-#: server_status.php:778
-msgid "Processes"
-msgstr "Jarayonlar"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -9116,16 +9158,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:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni."
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -9138,11 +9180,11 @@ msgstr ""
"saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini "
"oshirish tavsiya etiladi."
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni."
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -9150,7 +9192,7 @@ msgstr ""
"Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik "
"tuzilgan vaqtinchalik jadvallar soni."
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9158,31 +9200,31 @@ msgstr ""
"\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar "
"(masalan, kalitlar takrorlanishi oqibatida) soni."
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan "
"qatorlar soni."
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "Bajarilgan \"FLUSH\" buyruqlar soni."
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "Ichki \"COMMIT\" buyruqlari soni."
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni."
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -9192,7 +9234,7 @@ msgstr ""
"berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan "
"jadvallar soni."
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -9201,7 +9243,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:855
+#: server_status.php:864
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."
@@ -9210,7 +9252,7 @@ msgstr ""
"soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri "
"indekslanganidan dalolat beradi."
-#: server_status.php:856
+#: server_status.php:865
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 "
@@ -9220,7 +9262,7 @@ msgstr ""
"soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib "
"chiqish vaqtida o‘zgaruvchi qiymati oshadi."
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -9229,7 +9271,7 @@ msgstr ""
"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun "
"qo‘llaniladi: ORDER BY ... DESC."
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -9243,7 +9285,7 @@ msgstr ""
"bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning "
"mavjudligi."
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -9255,35 +9297,35 @@ msgstr ""
"jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning "
"afzalliklaridan foydalanmayotganligini bildiradi."
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "ROLLBACK ichki buyruqlar soni."
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni."
-#: server_status.php:862
+#: server_status.php:871
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:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")."
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "\"Kir\" sahifalarning joriy soni."
-#: server_status.php:865
+#: server_status.php:874
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:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "Bo‘sh sahifalar soni."
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -9293,7 +9335,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:868
+#: server_status.php:877
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 "
@@ -9305,11 +9347,11 @@ msgstr ""
"mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data\"."
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "Bufer pulining umumiy hajmi (sahifalarda)."
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -9318,7 +9360,7 @@ msgstr ""
"o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib "
"chiqayotganda ro‘y beradi."
-#: server_status.php:871
+#: server_status.php:880
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -9327,12 +9369,12 @@ msgstr ""
"soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda "
"ro‘y beradi"
-#: server_status.php:872
+#: server_status.php:881
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:873
+#: server_status.php:882
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -9340,7 +9382,7 @@ msgstr ""
"InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan "
"o‘qishga bo‘lgan ketma-ket so‘rovlar soni."
-#: server_status.php:874
+#: server_status.php:883
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 "
@@ -9354,51 +9396,51 @@ msgstr ""
"bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta "
"bo‘lmasligi kerak."
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni."
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni."
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni."
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "Tugallanmagan o‘qish operatsiyalari soni."
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "Tugallanmagan yozish operatsiyalari soni."
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)."
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni."
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni."
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)."
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni."
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni."
-#: server_status.php:886
+#: server_status.php:895
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."
@@ -9406,35 +9448,35 @@ msgstr ""
"Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi "
"kutayotgan yozuvlar soni"
-#: server_status.php:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni."
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "Jurnal faylidagi jismoniy yozuvlar soni."
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni."
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni."
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni."
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)."
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "Tuzilgan sahifalar soni."
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -9443,51 +9485,51 @@ msgstr ""
"Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, "
"ularni baytlarga o‘tkazish mumkin."
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "O‘qilgan sahifalar soni."
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "Yozilgan sahifalar soni."
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "Hozirda kutilayotgan qator blokirovkalari soni."
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)."
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)."
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)."
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "Umumiy kutilayotgan qator blokirovkalari soni."
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni."
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB jadvaliga yozilgan qatorlar soni."
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni."
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB jadvallarida yangilangan qatorlar soni."
-#: server_status.php:906
+#: server_status.php:915
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."
@@ -9495,7 +9537,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:907
+#: server_status.php:916
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."
@@ -9503,7 +9545,7 @@ msgstr ""
"Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi "
"ishlatilish darajasini belgilaydi."
-#: server_status.php:908
+#: server_status.php:917
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 "
@@ -9512,11 +9554,11 @@ msgstr ""
"Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning "
"o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi."
-#: server_status.php:909
+#: server_status.php:918
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:910
+#: server_status.php:919
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 "
@@ -9528,15 +9570,15 @@ msgstr ""
"murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/"
"Key_read_requests."
-#: server_status.php:911
+#: server_status.php:920
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:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni."
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -9547,19 +9589,19 @@ msgstr ""
"effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov "
"kompilyatsiya jarayoni bajarilmaganligini bildiradi."
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
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:916
+#: server_status.php:925
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -9567,42 +9609,42 @@ msgstr ""
"Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta "
"bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi."
-#: server_status.php:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "Ochiq fayllar soni."
-#: server_status.php:918
+#: server_status.php:927
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:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "Ochiq jadvallar soni."
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi"
-#: server_status.php:922
+#: server_status.php:931
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:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni."
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -9614,7 +9656,7 @@ msgstr ""
"beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least "
"Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi"
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -9622,19 +9664,19 @@ msgstr ""
"Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida "
"so‘ndirilgan so‘rovlar soni."
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "Keshda registratsiya qilingan so‘rovlar soni."
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni."
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)."
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -9642,13 +9684,13 @@ msgstr ""
"Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi "
"qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi."
-#: server_status.php:930
+#: server_status.php:939
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:931
+#: server_status.php:940
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.)"
@@ -9658,7 +9700,7 @@ msgstr ""
"o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya "
"etiladi."
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -9667,17 +9709,17 @@ msgstr ""
"birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda "
"katta bo‘lsa ham, unchalik muhim emas."
-#: server_status.php:933
+#: server_status.php:942
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:934
+#: server_status.php:943
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:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -9685,13 +9727,13 @@ msgstr ""
"Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan "
"qayta tranzaksiyalarning umumiy soni."
-#: server_status.php:936
+#: server_status.php:945
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:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -9699,12 +9741,12 @@ msgstr ""
"Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan "
"oqimlar soni."
-#: server_status.php:938
+#: server_status.php:947
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:939
+#: server_status.php:948
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 "
@@ -9714,26 +9756,26 @@ msgstr ""
"o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining "
"qiymatini oshirish zarur."
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni."
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "Sortirovka qilingan qatorlar soni"
-#: server_status.php:942
+#: server_status.php:951
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:943
+#: server_status.php:952
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:944
+#: server_status.php:953
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 "
@@ -9746,7 +9788,7 @@ msgstr ""
"so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish "
"kerak."
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -9757,11 +9799,11 @@ msgstr ""
"Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda "
"\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur."
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "Ochiq joriy ulanishlar soni."
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -9773,7 +9815,7 @@ msgstr ""
"o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik "
"ham oshirmaydi)."
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "Faol holatda bo‘lgan jarayonlar soni."
@@ -9899,7 +9941,7 @@ msgstr "Server o‘zgaruvchilari va sozlanishlari"
msgid "Session value"
msgstr "Sessiya qiymatlari"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "Global qiymat"
@@ -10285,41 +10327,41 @@ msgstr "Kalit juda qisqa, u kamida 8 ta belgidan iborat bo‘lishi kerak"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Tashqi qiymatlarni ko‘rib chiqish"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "Kiritilgan qator identifikatori: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "PHP-kod sifatida ko‘rsatish"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "SQL-so‘rovni ko‘rsatish"
-#: sql.php:654
+#: sql.php:666
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL to‘g‘riligini tekshirish"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr " `\"%s\"` jadvalidagi indekslarda muammo mavjud"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "Xatcho‘p belgisi"
@@ -10715,25 +10757,25 @@ msgid "No rows selected"
msgstr ""
"Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak. "
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")"
-#: tbl_select.php:233
+#: tbl_select.php:234
#, fuzzy
#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
msgstr "Maydonni tanlang (kamida bitta):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "Sahifadagi qatorlar soni "
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "Sortirovka:"
@@ -11037,8 +11079,12 @@ msgstr "Nom ko‘rinishi"
msgid "Rename view to"
msgstr "Ko‘rinish nomini o‘zgartirish"
-#, fuzzy
-#~| msgid "Query results operations"
+#~ msgid "Theme / Style"
+#~ msgstr "Mavzu / Uslub"
+
+#~ msgid "seconds"
+#~ msgstr "sekundiga"
+
#~ msgid "Query results"
#~ msgstr "So‘rov natijalarini ishlatish"
@@ -11052,8 +11098,6 @@ msgstr "Ko‘rinish nomini o‘zgartirish"
#~ msgid "Show processes"
#~ msgstr "Jarayonlar ro‘yxati"
-#, fuzzy
-#~| msgid "Reset"
#~ msgctxt "for Show status"
#~ msgid "Reset"
#~ msgstr "Tozalash"
@@ -11072,15 +11116,9 @@ msgstr "Ko‘rinish nomini o‘zgartirish"
#~ "So‘rovlar statiskasi: ishga tushirilgandan vaqtdan boshlab serverga "
#~ "yuborilgan so‘rovlar soni - \"%s\"."
-#, fuzzy
-#~| msgid "The privileges were reloaded successfully."
#~ msgid "Chart generated successfully."
#~ msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi."
-#, fuzzy
-#~| msgid ""
-#~| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]"
-#~| "FAQ 3.11[/a]"
#~ msgid ""
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
@@ -11088,26 +11126,18 @@ msgstr "Ko‘rinish nomini o‘zgartirish"
#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation."
#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
-#, fuzzy
-#~| msgid "Query type"
#~ msgid "Bar type"
#~ msgstr "So‘rov turi"
-#, fuzzy
-#~| msgid "Add a new User"
#~ msgid "Add a New User"
#~ msgstr "Yangi foydalanuvchi qo‘shish"
-#, fuzzy
-#~| msgid "Create version"
#~ msgid "Create User"
#~ msgstr "Vеrsiyasini tuzish"
#~ msgid "Add a new User"
#~ msgstr "Yangi foydalanuvchi qo‘shish"
-#, fuzzy
-#~| msgid "Show logo in left frame"
#~ msgid "Show table row links on left side"
#~ msgstr "Chap ramkada logotipni ko‘rsatish"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 90647f0ab0..94fb373287 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ 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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-06-08 05:00+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
@@ -15,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "全部显示"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -37,23 +37,23 @@ msgstr ""
"无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口"
"更新。"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "搜索"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -70,7 +70,7 @@ msgstr "搜索"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -83,7 +83,7 @@ msgstr "键名"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "说明"
@@ -134,7 +134,7 @@ msgstr "表注释"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "字段"
@@ -147,7 +147,7 @@ msgstr "字段"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "类型"
@@ -163,7 +163,7 @@ msgstr "类型"
msgid "Null"
msgstr "空"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -192,7 +192,7 @@ msgstr "链接到"
msgid "Comments"
msgstr "注释"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -203,12 +203,12 @@ msgstr "注释"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "否"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -223,7 +223,7 @@ msgstr "否"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -242,11 +242,11 @@ msgstr "查看数据库的转存(大纲)。"
msgid "No tables found in database."
msgstr "数据库中没有表。"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "全选"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "全不选"
@@ -268,7 +268,7 @@ msgstr "已将数据库 %s 复制为 %s"
msgid "Rename database to"
msgstr "将数据库改名为"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "命令"
@@ -329,7 +329,7 @@ msgstr "切换到复制的数据库"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -352,7 +352,7 @@ msgstr "编辑或导出关系大纲"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "表"
@@ -368,7 +368,7 @@ msgstr "行数"
msgid "Size"
msgstr "大小"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "使用中"
@@ -394,7 +394,7 @@ msgstr "最后更新"
msgid "Last check"
msgstr "最后检查"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -413,25 +413,25 @@ msgid "visual builder"
msgstr "可视化查询生成器"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "排序"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "递增"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "递减"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "显示"
@@ -454,7 +454,7 @@ msgstr "删除"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "或"
@@ -483,57 +483,57 @@ msgstr "使用表"
msgid "SQL query on database %s :"
msgstr "在数据库 %s 执行 SQL 语句:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "提交查询"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "拒绝访问"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "至少一个词"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "所有词"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "精确短语"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "使用正则表达式"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "“%s ”的搜索结果 %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "在表 %2$s 中找到 %1$s 个匹配"
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "浏览"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "删除 %s 表中所有匹配的记录?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -544,170 +544,170 @@ msgstr "删除 %s 表中所有匹配的记录?"
msgid "Delete"
msgstr "删除"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "总计: %s 个匹配"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "在数据库中搜索"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "要查找的文字或数值 (通配符:“%”):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "查找:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "每个单词用空格 (“ ”) 分隔。"
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "于以下表:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "包含字段:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "没有在数据库中找到表"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "已清空表 %s "
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "已删除视图 %s"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "已删除表 %s "
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "追踪已启用。"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "追踪已禁用。"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "该视图最少包含的行数,参见%s文档%s。"
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr "视图"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "复制"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "总计"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 服务器的默认存储引擎。"
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "选中项:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "全选"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "全不选"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "仅选择多余"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "导出"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "打印预览"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "清空"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "删除"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "检查表"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "优化表"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "修复表"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "分析表"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "添加表前缀"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "修改表前缀"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "复制表为新前缀"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "数据字典"
@@ -722,9 +722,9 @@ msgstr "已追踪的表"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "数据库"
@@ -740,8 +740,8 @@ msgstr "创建"
msgid "Updated"
msgstr "更新"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "状态"
@@ -878,7 +878,7 @@ msgstr "书签已删除。"
msgid "Showing bookmark"
msgstr "显示书签"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "已创建书签 %s"
@@ -903,7 +903,7 @@ msgstr ""
"将无法完成导入操作。"
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -929,15 +929,15 @@ msgstr "点击选中"
msgid "Click to unselect"
msgstr "点击取消"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。"
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "您真的要"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "您将要删除一个完整的数据库!"
@@ -1027,158 +1027,200 @@ msgstr "正在删除选中的用户"
msgid "Close"
msgstr "关闭"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "选择服务器"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "显示查询图表"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "总计"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "正在加载"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "正在处理请求"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "处理请求时发生错误"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "正在删除字段"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "正在添加主键"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "正在重命名数据库"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "重新载入数据库"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "正在复制数据库"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "正在修改字符集"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "数据表至少要有一个字段。"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "新建数据表"
-
-#: js/messages.php:101
-#, fuzzy
-#| msgid "Use Tables"
-msgid "Insert Table"
-msgstr "使用表"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "正在搜索"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "隐藏搜索结果"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "显示搜索结果"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "正在浏览"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "正在删除"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "隐藏查询框"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "显示查询框"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "快速编辑"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "编辑"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "选择服务器"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query chart"
+msgid "Live query chart"
+msgstr "显示查询图表"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "总计"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "选择服务器"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "进程"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "连接"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL 查询"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "查询统计"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "正在加载"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "正在处理请求"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "处理请求时发生错误"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "正在删除字段"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "正在添加主键"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "正在重命名数据库"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "重新载入数据库"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "正在复制数据库"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "正在修改字符集"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "数据表至少要有一个字段。"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "新建数据表"
+
+#: js/messages.php:114
+#, fuzzy
+#| msgid "Use Tables"
+msgid "Insert Table"
+msgstr "使用表"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "正在搜索"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "隐藏搜索结果"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "显示搜索结果"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "正在浏览"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "正在删除"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "隐藏查询框"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "显示查询框"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "快速编辑"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1186,67 +1228,67 @@ msgstr "编辑"
msgid "Save"
msgstr "保存"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "隐藏"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "隐藏搜索条件"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "显示搜索条件"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "选择外键"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "选择外键"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "请选择主键或唯一键"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "选择要显示的字段"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "给字段添加选项 "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "生成密码"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "生成"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "修改密码"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "更多"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1254,260 +1296,260 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ",最新稳定版本: "
-#: js/messages.php:150
+#: js/messages.php:163
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "转到数据库"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "完成"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "上个月"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "下个月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "今天"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "一月"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "二月"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "三月"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "四月"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "五月"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "六月"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "七月"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "八月"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "九月"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "十月"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "十一月"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "星期日"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "星期一"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "星期二"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "星期三"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "星期四"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "星期五"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "周六"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "周"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "时"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "分"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "秒"
@@ -1598,7 +1640,7 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "数据库"
@@ -1665,25 +1707,25 @@ msgstr "%s 在此 MySQL 服务器上被禁止了。"
msgid "This MySQL server does not support the %s storage engine."
msgstr "此 MySQL 服务器不支持 %s 存储引擎。"
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "无效的数据库"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "无效的数据表名"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "将表 %1$s 改名为 %2$s 时发生错误"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "已将数据表 %s 改名为 %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr ""
@@ -1715,10 +1757,9 @@ msgstr "未找到主题 %s !"
msgid "Theme path not found for theme %s!"
msgstr "找不到主题 %s 的路径"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "主题 / 风格"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1726,7 +1767,6 @@ msgstr "无法连接:无效的设置。"
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "欢迎使用 %s"
@@ -1874,7 +1914,7 @@ msgstr "已共享"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "数据表"
@@ -1954,7 +1994,6 @@ msgstr "无效的主机名 %1$s,请检查配置文件。"
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "服务器"
@@ -2002,7 +2041,7 @@ msgid "Documentation"
msgstr "文档"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL 查询"
@@ -2010,119 +2049,119 @@ msgstr "SQL 查询"
msgid "MySQL said: "
msgstr "MySQL 返回:"
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "连接到 SQL 校验器失败!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "解释 SQL"
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "略过解释 SQL"
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "无 PHP 代码"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "创建 PHP 代码"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "刷新"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "略过校验 SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "校验 SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "在本页面编辑此查询"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "内联"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "概要"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "字节"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小时,%s 分 %s 秒"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "开始"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "上一个"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "结束"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "跳转到数据库“%s”。"
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2134,41 +2173,41 @@ msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s"
msgid "Structure"
msgstr "结构"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "插入"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "操作"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "从计算机中上传:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "从网站服务器上传文件夹 %s 中选择:"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "用于上传的文件夹出错,无法使用"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "没有可上传的文件"
@@ -2521,7 +2560,7 @@ msgstr "默认数据表标签"
msgid "Show binary contents as HEX by default"
msgstr "默认以十六进制显示二进制内容"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "以十六进制显示二进制内容"
@@ -4478,7 +4517,7 @@ msgstr "设计器"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "权限"
@@ -4490,7 +4529,7 @@ msgstr "常规"
msgid "Return type"
msgstr "返回类型"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4671,9 +4710,9 @@ msgstr "文件的字符集:"
msgid "Compression:"
msgstr "压缩:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "无"
@@ -4796,37 +4835,57 @@ msgstr "格式特定选项:"
msgid "Language"
msgstr "Language"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Textarea columns"
+msgid "Restore column order"
+msgstr "文本框列"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "点击选中"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d 不是有效行数。"
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "行,起始行 #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "水平"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "水平 (旋转标题)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "垂直"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "以 %s 模式显示,并且在 %s 行后重复标题"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "主键排序"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4839,92 +4898,92 @@ msgstr "主键排序"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
msgid "Options"
msgstr "选项"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "部分内容"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "完整内容"
-#: libraries/display_tbl.lib.php:578
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "关联键"
-#: libraries/display_tbl.lib.php:579
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
msgstr "关联显示字段"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "显示二进制内容"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "显示 BLOB 内容"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "浏览器转换"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "复制"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "已删除该行"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "杀死"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "查询中"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "显示行"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "总计"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "查询花费 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "修改"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "查询结果选项"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "打印预览 (全文显示)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "显示图表"
-#: libraries/display_tbl.lib.php:2396
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
msgstr "新建视图"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "找不到链接"
@@ -4968,7 +5027,7 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。"
msgid "Buffer Pool"
msgstr "缓冲池"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB 状态"
@@ -5437,7 +5496,7 @@ msgstr "显示 MIME 类型"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "主机"
@@ -5648,7 +5707,7 @@ msgstr "SQL 查询结果"
msgid "Generated by"
msgstr "生成者"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查询结果为空 (即零行)。"
@@ -5803,7 +5862,7 @@ msgstr "添加表前缀"
msgid "Add prefix"
msgstr "添加前缀"
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "无更改"
@@ -6134,14 +6193,14 @@ msgid "Slave status"
msgstr "从服务器状态"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "变量"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "值"
@@ -6363,20 +6422,20 @@ msgid "Synchronize"
msgstr "同步"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "二进制日志"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "变量"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "字符集"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "引擎"
@@ -6421,11 +6480,11 @@ msgstr "清除"
msgid "Columns"
msgstr "字段"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "将此 SQL 查询加为书签"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "让所有用户均可访问此书签"
@@ -6636,7 +6695,7 @@ msgstr "分区定义"
msgid "+ Add a new value"
msgstr "+ 添加"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "时间"
@@ -6812,7 +6871,7 @@ msgid "Protocol version"
msgstr "协议版本"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "用户"
@@ -7072,7 +7131,7 @@ msgstr "聚合"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "运算符"
@@ -7246,17 +7305,17 @@ msgstr "文件不存在"
msgid "Select binary log to view"
msgstr "选择要查看的二进制日志"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "文件"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "截断显示的查询"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "显示完整查询"
@@ -7767,7 +7826,7 @@ msgstr "已成功修改主服务器到 %s"
msgid "This server is configured as master in a replication process."
msgstr "此服务器已被配置为一个复制进程中的主服务器。"
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "查看主服务器状态"
@@ -7908,207 +7967,194 @@ msgstr ""
"此服务器尚未配置为一个复制进程中的从服务器。你想现在配置 "
"吗?"
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "已杀死线程 %s 。"
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。"
-
-#: server_status.php:230
-msgid "Handler"
-msgstr "句柄"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "查询缓存"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "线程"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "临时数据"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "延迟插入"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "键缓存"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "多表查询"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "排序"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "事务协调"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "强制更新 (关闭) 所有表"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "显示打开的表"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "显示从服务器"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "显示从服务器状态"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "强制更新查询缓存"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "运行信息"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "选择服务器"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "查询统计"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
-msgid "All status variables"
-msgstr "查看从服务器状态"
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "刷新"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "秒"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "秒"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "分"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "分"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "秒"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "已杀死线程 %s 。"
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。"
+
+#: server_status.php:263
+msgid "Handler"
+msgstr "句柄"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "查询缓存"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "线程"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "临时数据"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "延迟插入"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "键缓存"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "多表查询"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "排序"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "事务协调"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "强制更新 (关闭) 所有表"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "显示打开的表"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "显示从服务器"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "显示从服务器状态"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "强制更新查询缓存"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "运行信息"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "选择服务器"
+
+#: server_status.php:402
+#, fuzzy
+#| msgid "See slave status table"
+msgid "All status variables"
+msgstr "查看从服务器状态"
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "保持原密码"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "显示打开的表"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "相关链接"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "每小时"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "每分钟"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "每秒"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "查询方式"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "此 MySQL 服务器已经运行了 %s,启动时间为 %s。"
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr "此 MySQL 服务器正以主 和从 服务器运行于复制 进程中。"
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr "此 MySQL 服务器正以主 服务器运行于复制 进程中。"
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr "此 MySQL 服务器正以从 服务器运行于复制 进程中。"
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-"要获得更多关于此服务器的复制状态,请查看复制状态信息"
-"a>。"
+"要获得更多关于此服务器的复制状态,请查看 复制状态信息"
+" 。"
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "复制状态"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "流量"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8116,45 +8162,41 @@ msgstr ""
"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正"
"确"
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "已接收"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "已发送"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "连接"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "最大并发连接数"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "已失败"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "已取消"
-#: server_status.php:778
-msgid "Processes"
-msgstr "进程"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, fuzzy
#| msgid "Whether to enable SSL for connection to MySQL server."
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "设置连接到 MySQL 服务器时是否使用 SSL 安全连接。"
-#: server_status.php:841
+#: server_status.php:850
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 "
@@ -8163,16 +8205,16 @@ msgstr ""
"因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储"
"的数量。"
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "事务所用的临时二进制日志缓存的数量。"
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8182,17 +8224,17 @@ msgstr ""
"服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables "
"很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。"
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "mysqld 已创建的临时文件的数量。"
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "服务器执行语句时自动在内存中创建的临时表的数量。"
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -8200,29 +8242,29 @@ msgstr ""
"发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复"
"值) 。"
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "延迟插入已写入的行数。"
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "已执行的强制更新 (FLUSH) 语句数。"
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "已执行的内部提交 (COMMIT) 语句数。"
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "从表中删除行的次数。"
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8231,7 +8273,7 @@ msgstr ""
"如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。"
"Handler_discovery 表明了一张表被发现的次数。"
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8240,14 +8282,14 @@ msgstr ""
"读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫"
"描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。"
-#: server_status.php:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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 "
@@ -8256,7 +8298,7 @@ msgstr ""
"根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或"
"进行完整表扫描,该值将会不断增长。"
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8264,7 +8306,7 @@ msgstr ""
"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... "
"DESC 的查询。"
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8274,7 +8316,7 @@ msgstr ""
"根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能"
"有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。"
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8284,35 +8326,35 @@ msgstr ""
"从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味"
"着你的表没有做好索引,或者你的查询语句没有使用好索引字段。"
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "内部回滚 (ROLLBACK) 语句数。"
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "表中更新行的请求数。"
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "表中插入行的请求数。"
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "非空页数 (含脏页) 。"
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "当前脏页数。"
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "请求更新的缓冲池页数。"
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "空闲页数。"
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8321,7 +8363,7 @@ msgstr ""
"InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能"
"被刷新或删除的。"
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8332,11 +8374,11 @@ msgstr ""
"公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data 。"
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "缓冲池总大小 (单位:页)。"
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8344,24 +8386,24 @@ msgstr ""
"InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发"
"生。"
-#: server_status.php:871
+#: server_status.php:880
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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB 完成的逻辑读请求数。"
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8373,85 +8415,85 @@ msgstr ""
"必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这"
"个值应该会很小。"
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "写入 InnoDB 缓冲池的次数。"
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "fsync() 总操作的次数。"
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "当前挂起 fsync() 操作的数量。"
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "当前挂起的读操作数。"
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "当前挂起的写操作数。"
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "读取的总数据量 (单位:字节)。"
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "数据读取总数。"
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "数据写入总数。"
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "写入的总数据量 (单位:字节)。"
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr "以双写入操作写入的页数。"
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "已经执行的双写入次数。"
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "日志写入请求数。"
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "日志物理写入次数。"
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "使用 fsync() 写入日志文件的次数。"
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "当前挂起的 fsync 日志文件数。"
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "当前挂起的日志写入数。"
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "写入日志文件的字节数。"
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "创建的页数。"
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8459,75 +8501,75 @@ msgstr ""
"编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方"
"便地将这些值转化为字节数。"
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "读取的页数。"
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "写入的页数。"
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "正在等待行锁的数量。"
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "等待获得行锁的平均时间 (单位:毫秒)。"
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "等待获得行锁的总时间 (单位:毫秒)。"
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "等待获得行锁的最大时间 (单位:毫秒)。"
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "等待行锁的次数。"
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "从 InnoDB 表中删除的行数。"
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "插入到 InnoDB 表中的行数。"
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "从 InnoDB 表中读取的行数。"
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB 中更新的行数。"
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "从缓存中读取键块的请求次数。"
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -8536,15 +8578,15 @@ msgstr ""
"从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size "
"可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。"
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "将一个键块写入缓存的请求数。"
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "将键块物理写入到磁盘的次数。"
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -8553,54 +8595,54 @@ msgstr ""
"最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行"
"相同的查询时的效率差异。默认值0表示还没有查询被编译。"
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "等待写入延迟插入队列的行数。"
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "打开的文件个数。"
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr "打开的流个数 (主要用于日志记录)。"
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "打开的数据表个数。"
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "查询缓存中空闲的内存总数。"
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "缓存命中数。"
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "加入到缓存的查询数。"
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8610,7 +8652,7 @@ msgstr ""
"为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除"
"哪个已缓存的查询。该信息可帮助您调整查询缓存大小。"
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8618,19 +8660,19 @@ msgstr ""
"未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的"
"查询)。"
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "在缓存中注册的查询数。"
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "查询缓存中的总块数。"
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "失败保护器的状态 (尚未应用)。"
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8638,11 +8680,11 @@ msgstr ""
"没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当"
"的索引。"
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr "使用在关联表上使用范围搜索的多表查询的数量。"
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -8650,7 +8692,7 @@ msgstr ""
"没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细"
"检查是否已经为表建立了适当的索引。)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8658,36 +8700,36 @@ msgstr ""
"在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影"
"响。)"
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr "在第一张表上进行了完整表扫描的多表查询数。"
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "当前由从 SQL 线程打开的临时表的数量。"
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr "从 SQL 线程总共重试事务复制数。"
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。"
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。"
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "使用了比 long_query_time 更多时间的查询数。"
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -8696,23 +8738,23 @@ msgstr ""
"排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 "
"sort_buffer_size 的值。"
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "局部范围完成的排序次数。"
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "排序的行数。"
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "扫描表完成的排序次数。"
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "立即需要锁定表的次数。"
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8722,7 +8764,7 @@ msgstr ""
"无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题,"
"则应该首先检查您的查询语句,然后使用复制操作来分开表。"
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -8731,11 +8773,11 @@ msgstr ""
"线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。"
"如果该值是红色的,则应该增加 thread_cache_size 的值。"
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "当前打开的连接数。"
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8746,7 +8788,7 @@ msgstr ""
"thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提"
"升)。"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "非睡眠状态的线程数量。"
@@ -8867,7 +8909,7 @@ msgstr "服务器变量和设置"
msgid "Session value"
msgstr "会话值"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "全局值"
@@ -9164,39 +9206,39 @@ msgstr "短语密码太短,至少应有 8 个字符。"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "浏览不相关的值"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "使用书签 \"%s\" 作为默认的查询。"
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "插入的行 id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "显示为 PHP 代码"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "显示 SQL 查询"
-#: sql.php:654
+#: sql.php:666
msgid "Validated SQL"
msgstr "已校验的 SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "数据表 `%s` 的索引存在问题"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "标签"
@@ -9570,23 +9612,23 @@ msgstr "外键约束"
msgid "No rows selected"
msgstr "没有选中任何行"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "执行“依例查询”(通配符:“%”)"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "选择字段 (至少一个):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "添加搜索条件 (“where”语句的主体):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "每页行数"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "显示顺序:"
@@ -9862,6 +9904,12 @@ msgstr "视图名"
msgid "Rename view to"
msgstr "将视图改名为"
+#~ msgid "Theme / Style"
+#~ msgstr "主题 / 风格"
+
+#~ msgid "seconds"
+#~ msgstr "秒"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "查询执行时间对比 (单位:微秒)"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index cbe6f09895..de7aafc508 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,10 +1,11 @@
+#
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-06-14 17:22+0200\n"
+"POT-Creation-Date: 2011-06-17 15:03+0200\n"
"PO-Revision-Date: 2011-06-12 05:41+0200\n"
-"Last-Translator: \n"
+"Last-Translator: \n"
"Language-Team: chinese_traditional \n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
@@ -14,12 +15,12 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
+#: libraries/display_tbl.lib.php:360 server_privileges.php:1583
msgid "Show all"
msgstr "全部顯示"
-#: browse_foreigners.php:70 libraries/common.lib.php:2254
-#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
+#: browse_foreigners.php:70 libraries/common.lib.php:2270
+#: libraries/display_tbl.lib.php:340 libraries/export/pdf.php:133
#: libraries/schema/Pdf_Relation_Schema.class.php:243
#: libraries/schema/Pdf_Relation_Schema.class.php:1098
#: libraries/schema/Pdf_Relation_Schema.class.php:1114
@@ -36,23 +37,23 @@ msgstr ""
"無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗"
"更新"
-#: browse_foreigners.php:151 libraries/common.lib.php:2747
-#: libraries/common.lib.php:2754 libraries/common.lib.php:2936
-#: libraries/common.lib.php:2937 libraries/db_links.inc.php:60
+#: browse_foreigners.php:151 libraries/common.lib.php:2763
+#: libraries/common.lib.php:2770 libraries/common.lib.php:2952
+#: libraries/common.lib.php:2953 libraries/db_links.inc.php:60
#: libraries/tbl_links.inc.php:61
msgid "Search"
msgstr "搜尋"
#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
-#: db_operations.php:531 db_operations.php:559 db_search.php:358
-#: db_structure.php:535 enum_editor.php:63 js/messages.php:79
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
+#: db_structure.php:536 enum_editor.php:63 js/messages.php:92
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
-#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1300
-#: libraries/common.lib.php:2230 libraries/core.lib.php:557
+#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1316
+#: libraries/common.lib.php:2246 libraries/core.lib.php:557
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
-#: libraries/display_tbl.lib.php:519 libraries/display_tbl.lib.php:605
+#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:644
#: libraries/replication_gui.lib.php:75 libraries/replication_gui.lib.php:371
#: libraries/schema/User_Schema.class.php:124
#: libraries/schema/User_Schema.class.php:176
@@ -69,7 +70,7 @@ msgstr "搜尋"
#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
+#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@@ -82,7 +83,7 @@ msgstr "鍵名"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
-#: server_status.php:1014
+#: server_status.php:1023
msgid "Description"
msgstr "說明"
@@ -133,7 +134,7 @@ msgstr "表註釋"
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_chart.php:86
#: tbl_indexes.php:187 tbl_printview.php:139 tbl_relation.php:399
-#: tbl_select.php:112 tbl_tracking.php:266 tbl_tracking.php:317
+#: tbl_select.php:113 tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "欄位"
@@ -146,7 +147,7 @@ msgstr "欄位"
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
#: libraries/tbl_properties.inc.php:99 server_privileges.php:2151
#: tbl_change.php:288 tbl_change.php:315 tbl_printview.php:140
-#: tbl_printview.php:310 tbl_select.php:113 tbl_structure.php:199
+#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:199
#: tbl_structure.php:753 tbl_tracking.php:267 tbl_tracking.php:314
msgid "Type"
msgstr "類型"
@@ -162,7 +163,7 @@ msgstr "類型"
msgid "Null"
msgstr "空"
-#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
+#: db_datadict.php:171 db_structure.php:461 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
#: libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
@@ -191,7 +192,7 @@ msgstr "連結到"
msgid "Comments"
msgstr "註釋"
-#: db_datadict.php:260 js/messages.php:98 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:111 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -202,12 +203,12 @@ msgstr "註釋"
#: server_privileges.php:1381 server_privileges.php:1392
#: server_privileges.php:1638 server_privileges.php:1649
#: server_privileges.php:1969 server_privileges.php:1974
-#: server_privileges.php:2268 sql.php:245 sql.php:306 tbl_printview.php:226
+#: server_privileges.php:2268 sql.php:256 sql.php:317 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "否"
-#: db_datadict.php:260 js/messages.php:97 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:110 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
@@ -222,7 +223,7 @@ msgstr "否"
#: server_databases.php:76 server_privileges.php:1378
#: server_privileges.php:1389 server_privileges.php:1635
#: server_privileges.php:1649 server_privileges.php:1969
-#: server_privileges.php:1972 server_privileges.php:2268 sql.php:305
+#: server_privileges.php:1972 server_privileges.php:2268 sql.php:316
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
@@ -241,11 +242,11 @@ msgstr "查看資料庫的轉存(大綱)"
msgid "No tables found in database."
msgstr "資料庫中沒有表"
-#: db_export.php:44 db_search.php:340 server_export.php:26
+#: db_export.php:44 db_search.php:342 server_export.php:26
msgid "Select All"
msgstr "全選"
-#: db_export.php:46 db_search.php:343 server_export.php:28
+#: db_export.php:46 db_search.php:345 server_export.php:28
msgid "Unselect All"
msgstr "全不選"
@@ -267,7 +268,7 @@ msgstr "已將資料庫 %s 複製爲 %s"
msgid "Rename database to"
msgstr "將資料庫改名為"
-#: db_operations.php:409 server_status.php:783
+#: db_operations.php:409 server_status.php:792
msgid "Command"
msgstr "命令"
@@ -328,7 +329,7 @@ msgstr "切換到複製的資料庫"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:739 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
+#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@@ -351,7 +352,7 @@ msgstr "編輯或匯出關聯大綱"
#: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237
#: server_privileges.php:1745 server_privileges.php:1801
#: server_privileges.php:2065 server_synchronize.php:418
-#: server_synchronize.php:861 tbl_tracking.php:643 test/theme.php:73
+#: server_synchronize.php:861 tbl_tracking.php:643
msgid "Table"
msgstr "表"
@@ -367,7 +368,7 @@ msgstr "行數"
msgid "Size"
msgstr "大小"
-#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:749
+#: db_printview.php:160 db_structure.php:417 libraries/export/sql.php:749
#: libraries/export/sql.php:1076
msgid "in use"
msgstr "使用中"
@@ -393,7 +394,7 @@ msgstr "最後更新"
msgid "Last check"
msgstr "最後檢查"
-#: db_printview.php:220 db_structure.php:439
+#: db_printview.php:220 db_structure.php:440
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -412,25 +413,25 @@ msgid "visual builder"
msgstr "視覺化查詢產生器"
#: db_qbe.php:222 libraries/db_structure.lib.php:95
-#: libraries/display_tbl.lib.php:865
+#: libraries/display_tbl.lib.php:914
msgid "Sort"
msgstr "排序"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
-#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:549 libraries/display_tbl.lib.php:875
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
-#: tbl_select.php:277
+#: tbl_select.php:278
msgid "Ascending"
msgstr "遞增"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
-#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823
+#: libraries/display_tbl.lib.php:554 libraries/display_tbl.lib.php:872
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
-#: tbl_select.php:278
+#: tbl_select.php:279
msgid "Descending"
msgstr "遞減"
-#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:429
#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "顯示"
@@ -453,7 +454,7 @@ msgstr "刪除"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Or"
msgstr "或"
@@ -482,57 +483,57 @@ msgstr "使用表"
msgid "SQL query on database %s :"
msgstr "在資料庫 %s 執行 SQL 指令:"
-#: db_qbe.php:955 libraries/common.lib.php:1153
+#: db_qbe.php:955 libraries/common.lib.php:1169
msgid "Submit Query"
msgstr "送出查詢"
-#: db_search.php:52 libraries/auth/config.auth.lib.php:83
+#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:645 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "拒絕訪問"
-#: db_search.php:64 db_search.php:307
+#: db_search.php:66 db_search.php:309
msgid "at least one of the words"
msgstr "至少一個字"
-#: db_search.php:65 db_search.php:308
+#: db_search.php:67 db_search.php:310
msgid "all words"
msgstr "所有詞"
-#: db_search.php:66 db_search.php:309
+#: db_search.php:68 db_search.php:311
msgid "the exact phrase"
msgstr "精確短語"
-#: db_search.php:67 db_search.php:310
+#: db_search.php:69 db_search.php:312
msgid "as regular expression"
msgstr "以正則運算式 (regular expression) 搜索"
-#: db_search.php:229
+#: db_search.php:231
#, php-format
msgid "Search results for \"%s \" %s:"
msgstr "“%s ”的搜尋結果 %s:"
-#: db_search.php:247
+#: db_search.php:249
#, php-format
msgid "%s match inside table %s "
msgid_plural "%s matches inside table %s "
msgstr[0] "%s 筆資料符合 - 於資料表 %s "
-#: db_search.php:254 libraries/common.lib.php:2749
-#: libraries/common.lib.php:2934 libraries/common.lib.php:2935
+#: db_search.php:256 libraries/common.lib.php:2765
+#: libraries/common.lib.php:2950 libraries/common.lib.php:2951
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "瀏覽"
-#: db_search.php:259
+#: db_search.php:261
#, php-format
msgid "Delete the matches for the %s table?"
msgstr "刪除 %s 資料表中符合的資料?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1247
-#: libraries/display_tbl.lib.php:2195
+#: db_search.php:261 libraries/display_tbl.lib.php:1302
+#: libraries/display_tbl.lib.php:2272
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
@@ -543,170 +544,170 @@ msgstr "刪除 %s 資料表中符合的資料?"
msgid "Delete"
msgstr "刪除"
-#: db_search.php:272
+#: db_search.php:274
#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "總計: %s 項資料符合"
-#: db_search.php:295
+#: db_search.php:297
msgid "Search in database"
msgstr "在資料庫中搜尋"
-#: db_search.php:298
+#: db_search.php:300
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr "要搜尋的文字或數值 (萬用字元:“%”):"
-#: db_search.php:303
+#: db_search.php:305
msgid "Find:"
msgstr "搜尋:"
-#: db_search.php:307 db_search.php:308
+#: db_search.php:309 db_search.php:310
msgid "Words are separated by a space character (\" \")."
msgstr "每個單詞用空格 (“ ”) 分隔"
-#: db_search.php:321
+#: db_search.php:323
msgid "Inside table(s):"
msgstr "於以下表:"
-#: db_search.php:351
+#: db_search.php:353
msgid "Inside column:"
msgstr "於以下欄位:"
-#: db_structure.php:59
+#: db_structure.php:60
msgid "No tables found in database"
msgstr "沒有在資料庫中找到表"
-#: db_structure.php:277 tbl_operations.php:688
+#: db_structure.php:278 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "已清空表 %s "
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "已刪除 view %s"
-#: db_structure.php:286 tbl_operations.php:705
+#: db_structure.php:287 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "已刪除表 %s "
-#: db_structure.php:293 tbl_create.php:295
+#: db_structure.php:294 tbl_create.php:295
msgid "Tracking is active."
msgstr "追蹤已啓用"
-#: db_structure.php:295 tbl_create.php:297
+#: db_structure.php:296 tbl_create.php:297
msgid "Tracking is not active."
msgstr "追蹤已停用"
-#: db_structure.php:379 libraries/display_tbl.lib.php:2079
+#: db_structure.php:380 libraries/display_tbl.lib.php:2156
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。"
-#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152
-#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:72
+#: db_structure.php:394 db_structure.php:408 libraries/header.inc.php:152
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:206
msgid "View"
msgstr " view"
-#: db_structure.php:444 libraries/db_structure.lib.php:40
+#: db_structure.php:445 libraries/db_structure.lib.php:40
#: libraries/server_links.inc.php:90 server_replication.php:31
-#: server_replication.php:162 server_status.php:238
+#: server_replication.php:162 server_status.php:271
msgid "Replication"
msgstr "複製"
-#: db_structure.php:448
+#: db_structure.php:449
msgid "Sum"
msgstr "總計"
-#: db_structure.php:455 libraries/StorageEngine.class.php:351
+#: db_structure.php:456 libraries/StorageEngine.class.php:351
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 伺服器的預設儲存引擎"
-#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2220 libraries/display_tbl.lib.php:2225
+#: db_structure.php:484 db_structure.php:501 db_structure.php:502
+#: libraries/display_tbl.lib.php:2297 libraries/display_tbl.lib.php:2302
#: libraries/mult_submits.inc.php:15 server_databases.php:260
#: server_databases.php:265 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "選中項:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2215
+#: db_structure.php:487 libraries/display_tbl.lib.php:2292
#: server_databases.php:262 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "全選"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2216
+#: db_structure.php:491 libraries/display_tbl.lib.php:2293
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "全不選"
-#: db_structure.php:495
+#: db_structure.php:496
msgid "Check tables having overhead"
msgstr "僅選擇多餘"
-#: db_structure.php:503 libraries/config/messages.inc.php:164
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2233
-#: libraries/display_tbl.lib.php:2371 libraries/server_links.inc.php:65
+#: db_structure.php:504 libraries/config/messages.inc.php:164
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2310
+#: libraries/display_tbl.lib.php:2448 libraries/server_links.inc.php:65
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
#: server_privileges.php:1354 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "匯出"
-#: db_structure.php:505 db_structure.php:567
-#: libraries/display_tbl.lib.php:2322 tbl_structure.php:586
+#: db_structure.php:506 db_structure.php:568
+#: libraries/display_tbl.lib.php:2399 tbl_structure.php:586
#: tbl_structure.php:588
msgid "Print view"
msgstr "列印預覽"
-#: db_structure.php:509 libraries/common.lib.php:2943
-#: libraries/common.lib.php:2944
+#: db_structure.php:510 libraries/common.lib.php:2959
+#: libraries/common.lib.php:2960
msgid "Empty"
msgstr "清空"
-#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
-#: libraries/common.lib.php:2941 libraries/common.lib.php:2942
+#: db_structure.php:512 db_tracking.php:104 libraries/Index.class.php:487
+#: libraries/common.lib.php:2957 libraries/common.lib.php:2958
#: server_databases.php:266 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "刪除"
-#: db_structure.php:513 tbl_operations.php:604
+#: db_structure.php:514 tbl_operations.php:604
msgid "Check table"
msgstr "檢查表"
-#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803
+#: db_structure.php:516 tbl_operations.php:653 tbl_structure.php:803
#: tbl_structure.php:805
msgid "Optimize table"
msgstr "最佳化表"
-#: db_structure.php:517 tbl_operations.php:640
+#: db_structure.php:518 tbl_operations.php:640
msgid "Repair table"
msgstr "修復表"
-#: db_structure.php:519 tbl_operations.php:627
+#: db_structure.php:520 tbl_operations.php:627
msgid "Analyze table"
msgstr "分析表"
-#: db_structure.php:521
+#: db_structure.php:522
msgid "Add prefix to table"
msgstr "資料表名稱增加前綴文字"
-#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#: db_structure.php:524 libraries/mult_submits.inc.php:246
msgid "Replace table prefix"
msgstr "覆蓋資料表名稱的前綴文字"
-#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#: db_structure.php:526 libraries/mult_submits.inc.php:246
msgid "Copy table with prefix"
msgstr "複製資料表名稱的前綴文字"
-#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:575 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "資料字典"
@@ -721,9 +722,9 @@ msgstr "已追蹤的表"
#: libraries/export/xml.php:258 libraries/header.inc.php:139
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
-#: server_privileges.php:2059 server_status.php:782
+#: server_privileges.php:2059 server_status.php:791
#: server_synchronize.php:1190 server_synchronize.php:1194
-#: tbl_tracking.php:642 test/theme.php:63
+#: tbl_tracking.php:642
msgid "Database"
msgstr "資料庫"
@@ -739,8 +740,8 @@ msgstr "建立"
msgid "Updated"
msgstr "更新"
-#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:785
-#: sql.php:912 tbl_tracking.php:647 test/theme.php:99
+#: db_tracking.php:89 libraries/server_links.inc.php:51 server_status.php:794
+#: sql.php:925 tbl_tracking.php:647
msgid "Status"
msgstr "狀態"
@@ -878,7 +879,7 @@ msgstr "書籤已被刪除."
msgid "Showing bookmark"
msgstr "顯示書籤"
-#: import.php:402 sql.php:947
+#: import.php:402 sql.php:960
#, php-format
msgid "Bookmark %s created"
msgstr "已建立書籤 %s"
@@ -904,7 +905,7 @@ msgstr ""
"將無法完成匯入操作"
#: import.php:453 libraries/Message.class.php:185
-#: libraries/display_tbl.lib.php:2116 libraries/sql_query_form.lib.php:139
+#: libraries/display_tbl.lib.php:2193 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
@@ -930,15 +931,15 @@ msgstr "點擊選取"
msgid "Click to unselect"
msgstr "點擊取消"
-#: js/messages.php:27 libraries/import.lib.php:103 sql.php:202
+#: js/messages.php:27 libraries/import.lib.php:103 sql.php:213
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令"
-#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:300
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:311
msgid "Do you really want to "
msgstr "您真的要"
-#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:285
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:296
msgid "You are about to DESTROY a complete database!"
msgstr "您將要刪除一個完整的資料庫!"
@@ -1029,156 +1030,198 @@ msgstr "正在刪除選中的使用者"
msgid "Close"
msgstr "關閉"
-#: js/messages.php:64 server_status.php:393
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Live traffic chart"
-msgstr "選擇伺服器"
-
-#: js/messages.php:65 server_status.php:396
-msgid "Live conn./process chart"
-msgstr ""
-
-#: js/messages.php:66 server_status.php:423
-#, fuzzy
-#| msgid "Show query chart"
-msgid "Live query chart"
-msgstr "顯示查詢圖表"
-
-#: js/messages.php:68
-msgid "Static data"
-msgstr ""
-
-#. l10n: Total number of queries
-#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
-#: libraries/engines/innodb.lib.php:168 server_databases.php:219
-#: server_status.php:685 server_status.php:746 tbl_printview.php:348
-#: tbl_structure.php:790
-msgid "Total"
-msgstr "總計"
-
-#. l10n: Other, small valued, queries
-#: js/messages.php:72 server_status.php:586
-msgid "Other"
-msgstr ""
-
-#. l10n: Thousands separator
-#: js/messages.php:74 libraries/common.lib.php:1359
-msgid ","
-msgstr ","
-
-#. l10n: Decimal separator
-#: js/messages.php:76 libraries/common.lib.php:1361
-msgid "."
-msgstr "."
-
-#: js/messages.php:80 libraries/tbl_properties.inc.php:796 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:83
-msgid "Loading"
-msgstr "載入中"
-
-#: js/messages.php:84
-msgid "Processing Request"
-msgstr "要求處理中"
-
-#: js/messages.php:85 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr "要求處理得程序中有錯誤"
-
-#: js/messages.php:86
-msgid "Dropping Column"
-msgstr "刪除欄位"
-
-#: js/messages.php:87
-msgid "Adding Primary Key"
-msgstr "正在新增主鍵"
-
-#: js/messages.php:88 libraries/relation.lib.php:87 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:91
-msgid "Renaming Databases"
-msgstr "更改資料庫名稱中"
-
-#: js/messages.php:92
-msgid "Reload Database"
-msgstr "重新載入資料庫"
-
-#: js/messages.php:93
-msgid "Copying Database"
-msgstr "複製資料庫中"
-
-#: js/messages.php:94
-msgid "Changing Charset"
-msgstr "更改文字編碼"
-
-#: js/messages.php:95
-msgid "Table must have at least one column"
-msgstr "資料表最少需要有一個欄位"
-
-#: js/messages.php:96
-msgid "Create Table"
-msgstr "建立資料表"
-
-#: js/messages.php:101
-msgid "Insert Table"
-msgstr "插入資料表"
-
-#: js/messages.php:104
-msgid "Searching"
-msgstr "搜索中"
-
-#: js/messages.php:105
-msgid "Hide search results"
-msgstr "隱藏搜尋結果"
-
-#: js/messages.php:106
-msgid "Show search results"
-msgstr "顯示搜尋結果"
-
-#: js/messages.php:107
-msgid "Browsing"
-msgstr "瀏覽"
-
-#: js/messages.php:108
-msgid "Deleting"
-msgstr "刪除"
-
-#: js/messages.php:111
-msgid ""
-"Note: If the file contains multiple tables, they will be combined into one"
-msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表."
-
-#: js/messages.php:114
-msgid "Hide query box"
-msgstr "隱藏查詢框"
-
-#: js/messages.php:115
-msgid "Show query box"
-msgstr "顯示查詢框"
-
-#: js/messages.php:116
-msgid "Inline Edit"
-msgstr "快速編輯"
-
-#: js/messages.php:117 libraries/Index.class.php:465
-#: libraries/common.lib.php:594 libraries/common.lib.php:1129
-#: libraries/common.lib.php:2945 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1211 libraries/import.lib.php:1150
+#: js/messages.php:64 js/messages.php:130 libraries/Index.class.php:465
+#: libraries/common.lib.php:594 libraries/common.lib.php:1145
+#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
+#: libraries/display_tbl.lib.php:1266 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "編輯"
-#: js/messages.php:118 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:66 server_status.php:416
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Live traffic chart"
+msgstr "選擇伺服器"
+
+#: js/messages.php:67 server_status.php:419
+msgid "Live conn./process chart"
+msgstr ""
+
+#: js/messages.php:68 server_status.php:438
+#, fuzzy
+#| msgid "Show query chart"
+msgid "Live query chart"
+msgstr "顯示查詢圖表"
+
+#: js/messages.php:70
+msgid "Static data"
+msgstr ""
+
+#. l10n: Total number of queries
+#: js/messages.php:72 libraries/build_html_for_db.lib.php:45
+#: libraries/engines/innodb.lib.php:168 server_databases.php:219
+#: server_status.php:694 server_status.php:755 tbl_printview.php:348
+#: tbl_structure.php:790
+msgid "Total"
+msgstr "總計"
+
+#. l10n: Other, small valued, queries
+#: js/messages.php:74 server_status.php:595
+msgid "Other"
+msgstr ""
+
+#. l10n: Thousands separator
+#: js/messages.php:76 libraries/common.lib.php:1375
+msgid ","
+msgstr ","
+
+#. l10n: Decimal separator
+#: js/messages.php:78 libraries/common.lib.php:1377
+msgid "."
+msgstr "."
+
+#: js/messages.php:80
+msgid "KiB sent since last refresh"
+msgstr ""
+
+#: js/messages.php:81
+msgid "KiB received since last refresh"
+msgstr ""
+
+#: js/messages.php:82
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic (in KiB)"
+msgstr "選擇伺服器"
+
+#: js/messages.php:83
+msgid "Connections since last refresh"
+msgstr ""
+
+#: js/messages.php:84 server_status.php:787
+msgid "Processes"
+msgstr "處理"
+
+#: js/messages.php:85
+#, fuzzy
+#| msgid "Connections"
+msgid "Connections / Processes"
+msgstr "連線"
+
+#: js/messages.php:86
+msgid "Issued queries since last refresh"
+msgstr ""
+
+#: js/messages.php:87
+#, fuzzy
+#| msgid "SQL queries"
+msgid "Issued queries"
+msgstr "SQL 查詢"
+
+#: js/messages.php:89 server_status.php:401
+msgid "Query statistics"
+msgstr "查詢統計"
+
+#: js/messages.php:93 libraries/tbl_properties.inc.php:796 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:96
+msgid "Loading"
+msgstr "載入中"
+
+#: js/messages.php:97
+msgid "Processing Request"
+msgstr "要求處理中"
+
+#: js/messages.php:98 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "要求處理得程序中有錯誤"
+
+#: js/messages.php:99
+msgid "Dropping Column"
+msgstr "刪除欄位"
+
+#: js/messages.php:100
+msgid "Adding Primary Key"
+msgstr "正在新增主鍵"
+
+#: js/messages.php:101 libraries/relation.lib.php:87 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:104
+msgid "Renaming Databases"
+msgstr "更改資料庫名稱中"
+
+#: js/messages.php:105
+msgid "Reload Database"
+msgstr "重新載入資料庫"
+
+#: js/messages.php:106
+msgid "Copying Database"
+msgstr "複製資料庫中"
+
+#: js/messages.php:107
+msgid "Changing Charset"
+msgstr "更改文字編碼"
+
+#: js/messages.php:108
+msgid "Table must have at least one column"
+msgstr "資料表最少需要有一個欄位"
+
+#: js/messages.php:109
+msgid "Create Table"
+msgstr "建立資料表"
+
+#: js/messages.php:114
+msgid "Insert Table"
+msgstr "插入資料表"
+
+#: js/messages.php:117
+msgid "Searching"
+msgstr "搜索中"
+
+#: js/messages.php:118
+msgid "Hide search results"
+msgstr "隱藏搜尋結果"
+
+#: js/messages.php:119
+msgid "Show search results"
+msgstr "顯示搜尋結果"
+
+#: js/messages.php:120
+msgid "Browsing"
+msgstr "瀏覽"
+
+#: js/messages.php:121
+msgid "Deleting"
+msgstr "刪除"
+
+#: js/messages.php:124
+msgid ""
+"Note: If the file contains multiple tables, they will be combined into one"
+msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表."
+
+#: js/messages.php:127
+msgid "Hide query box"
+msgstr "隱藏查詢框"
+
+#: js/messages.php:128
+msgid "Show query box"
+msgstr "顯示查詢框"
+
+#: js/messages.php:129
+msgid "Inline Edit"
+msgstr "快速編輯"
+
+#: js/messages.php:131 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:785 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@@ -1186,67 +1229,67 @@ msgstr "編輯"
msgid "Save"
msgstr "儲存"
-#: js/messages.php:119 libraries/display_tbl.lib.php:598 pmd_general.php:158
+#: js/messages.php:132 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "隱藏"
-#: js/messages.php:122
+#: js/messages.php:135
msgid "Hide search criteria"
msgstr "隱藏搜尋條件"
-#: js/messages.php:123
+#: js/messages.php:136
msgid "Show search criteria"
msgstr "顯示搜尋條件"
-#: js/messages.php:126 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:139 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:129
+#: js/messages.php:142
msgid "Select referenced key"
msgstr "選擇外部鍵"
-#: js/messages.php:130
+#: js/messages.php:143
msgid "Select Foreign Key"
msgstr "選擇外部鍵"
-#: js/messages.php:131
+#: js/messages.php:144
msgid "Please select the primary key or a unique key"
msgstr "請選擇主鍵或唯一鍵"
-#: js/messages.php:132 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:145 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "選擇要顯示的欄位"
-#: js/messages.php:133
+#: js/messages.php:146
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:136
+#: js/messages.php:149
msgid "Add an option for column "
msgstr "新增選項給欄位 "
-#: js/messages.php:139
+#: js/messages.php:152
msgid "Generate password"
msgstr "產生密碼"
-#: js/messages.php:140 libraries/replication_gui.lib.php:365
+#: js/messages.php:153 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "產生"
-#: js/messages.php:141
+#: js/messages.php:154
msgid "Change Password"
msgstr "修改密碼"
-#: js/messages.php:144 tbl_structure.php:471
+#: js/messages.php:157 tbl_structure.php:471
msgid "More"
msgstr "更多"
-#: js/messages.php:147 setup/lib/index.lib.php:158
+#: js/messages.php:160 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1254,260 +1297,260 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:149
+#: js/messages.php:162
msgid ", latest stable version:"
msgstr ",最新穩定版本: "
-#: js/messages.php:150
+#: js/messages.php:163
msgid "up to date"
msgstr "最新"
#. l10n: Display text for calendar close link
-#: js/messages.php:168
+#: js/messages.php:181
msgid "Done"
msgstr "完成"
# 這應該是使用於選擇日期的月曆
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:170
+#: js/messages.php:183
msgid "Prev"
msgstr "上個月"
# 這應該使用於選擇日期的小月曆
#. l10n: Display text for next month link in calendar
-#: js/messages.php:172 libraries/common.lib.php:2293
-#: libraries/common.lib.php:2296 libraries/display_tbl.lib.php:353
+#: js/messages.php:185 libraries/common.lib.php:2309
+#: libraries/common.lib.php:2312 libraries/display_tbl.lib.php:372
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:895
msgid "Next"
msgstr "下個月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:174
+#: js/messages.php:187
msgid "Today"
msgstr "今天"
-#: js/messages.php:177
+#: js/messages.php:190
msgid "January"
msgstr "一月"
-#: js/messages.php:178
+#: js/messages.php:191
msgid "February"
msgstr "二月"
-#: js/messages.php:179
+#: js/messages.php:192
msgid "March"
msgstr "三月"
-#: js/messages.php:180
+#: js/messages.php:193
msgid "April"
msgstr "四月"
-#: js/messages.php:181
+#: js/messages.php:194
msgid "May"
msgstr "五月"
-#: js/messages.php:182
+#: js/messages.php:195
msgid "June"
msgstr "六月"
-#: js/messages.php:183
+#: js/messages.php:196
msgid "July"
msgstr "七月"
-#: js/messages.php:184
+#: js/messages.php:197
msgid "August"
msgstr "八月"
-#: js/messages.php:185
+#: js/messages.php:198
msgid "September"
msgstr "九月"
-#: js/messages.php:186
+#: js/messages.php:199
msgid "October"
msgstr "十月"
-#: js/messages.php:187
+#: js/messages.php:200
msgid "November"
msgstr "十一月"
-#: js/messages.php:188
+#: js/messages.php:201
msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:192 libraries/common.lib.php:1496
+#: js/messages.php:205 libraries/common.lib.php:1512
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:194 libraries/common.lib.php:1498
+#: js/messages.php:207 libraries/common.lib.php:1514
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:196 libraries/common.lib.php:1500
+#: js/messages.php:209 libraries/common.lib.php:1516
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:198 libraries/common.lib.php:1502
+#: js/messages.php:211 libraries/common.lib.php:1518
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:200 libraries/common.lib.php:1504
+#: js/messages.php:213 libraries/common.lib.php:1520
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:202 libraries/common.lib.php:1506
+#: js/messages.php:215 libraries/common.lib.php:1522
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:204 libraries/common.lib.php:1508
+#: js/messages.php:217 libraries/common.lib.php:1524
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:206 libraries/common.lib.php:1510
+#: js/messages.php:219 libraries/common.lib.php:1526
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:208 libraries/common.lib.php:1512
+#: js/messages.php:221 libraries/common.lib.php:1528
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:210 libraries/common.lib.php:1514
+#: js/messages.php:223 libraries/common.lib.php:1530
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:212 libraries/common.lib.php:1516
+#: js/messages.php:225 libraries/common.lib.php:1532
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:214 libraries/common.lib.php:1518
+#: js/messages.php:227 libraries/common.lib.php:1534
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:217
+#: js/messages.php:230
msgid "Sunday"
msgstr "星期日"
-#: js/messages.php:218
+#: js/messages.php:231
msgid "Monday"
msgstr "星期一"
-#: js/messages.php:219
+#: js/messages.php:232
msgid "Tuesday"
msgstr "星期二"
-#: js/messages.php:220
+#: js/messages.php:233
msgid "Wednesday"
msgstr "星期三"
-#: js/messages.php:221
+#: js/messages.php:234
msgid "Thursday"
msgstr "星期四"
-#: js/messages.php:222
+#: js/messages.php:235
msgid "Friday"
msgstr "星期五"
-#: js/messages.php:223
+#: js/messages.php:236
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:227 libraries/common.lib.php:1521
+#: js/messages.php:240 libraries/common.lib.php:1537
msgid "Sun"
msgstr "週日"
#. l10n: Short week day name
-#: js/messages.php:229 libraries/common.lib.php:1523
+#: js/messages.php:242 libraries/common.lib.php:1539
msgid "Mon"
msgstr "週一"
#. l10n: Short week day name
-#: js/messages.php:231 libraries/common.lib.php:1525
+#: js/messages.php:244 libraries/common.lib.php:1541
msgid "Tue"
msgstr "週二"
#. l10n: Short week day name
-#: js/messages.php:233 libraries/common.lib.php:1527
+#: js/messages.php:246 libraries/common.lib.php:1543
msgid "Wed"
msgstr "週三"
#. l10n: Short week day name
-#: js/messages.php:235 libraries/common.lib.php:1529
+#: js/messages.php:248 libraries/common.lib.php:1545
msgid "Thu"
msgstr "週四"
#. l10n: Short week day name
-#: js/messages.php:237 libraries/common.lib.php:1531
+#: js/messages.php:250 libraries/common.lib.php:1547
msgid "Fri"
msgstr "週五"
#. l10n: Short week day name
-#: js/messages.php:239 libraries/common.lib.php:1533
+#: js/messages.php:252 libraries/common.lib.php:1549
msgid "Sat"
msgstr "週六"
#. l10n: Minimal week day name
-#: js/messages.php:243
+#: js/messages.php:256
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:245
+#: js/messages.php:258
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
-#: js/messages.php:247
+#: js/messages.php:260
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
-#: js/messages.php:249
+#: js/messages.php:262
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
-#: js/messages.php:251
+#: js/messages.php:264
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
-#: js/messages.php:253
+#: js/messages.php:266
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
-#: js/messages.php:255
+#: js/messages.php:268
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:257
+#: js/messages.php:270
msgid "Wk"
msgstr "周"
-#: js/messages.php:259
+#: js/messages.php:272
msgid "Hour"
msgstr "時"
-#: js/messages.php:260
+#: js/messages.php:273
msgid "Minute"
msgstr "分"
-#: js/messages.php:261
+#: js/messages.php:274
msgid "Second"
msgstr "秒"
@@ -1598,7 +1641,7 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740 test/theme.php:91
+#: server_privileges.php:1740
msgid "Databases"
msgstr "資料庫"
@@ -1659,25 +1702,25 @@ msgstr "%s 在此 MySQL 伺服器上被禁止了"
msgid "This MySQL server does not support the %s storage engine."
msgstr "此 MySQL 伺服器不支援 %s 儲存引擎"
-#: libraries/Table.class.php:1026
+#: libraries/Table.class.php:1027
msgid "Invalid database"
msgstr "無效的資料庫"
-#: libraries/Table.class.php:1040 tbl_get_field.php:25
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
msgid "Invalid table name"
msgstr "無效的資料資料表名稱"
-#: libraries/Table.class.php:1055
+#: libraries/Table.class.php:1056
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤"
-#: libraries/Table.class.php:1138
+#: libraries/Table.class.php:1139
#, php-format
msgid "Table %s has been renamed to %s"
msgstr "已將資料表 %s 改名爲 %s"
-#: libraries/Table.class.php:1250
+#: libraries/Table.class.php:1272
msgid "Could not save table UI preferences"
msgstr "無法儲存表格介面使用者喜好設定"
@@ -1709,10 +1752,9 @@ msgstr "未找到主題 %s !"
msgid "Theme path not found for theme %s!"
msgstr "找不到主題 %s 的路徑"
-#: libraries/Theme_Manager.class.php:291 test/theme.php:159 themes.php:20
-#: themes.php:40
-msgid "Theme / Style"
-msgstr "佈景主題/風格"
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
@@ -1720,7 +1762,6 @@ msgstr "無法連線: 設定錯誤."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:204 libraries/auth/http.auth.lib.php:64
-#: test/theme.php:150
#, php-format
msgid "Welcome to %s"
msgstr "歡迎使用 %s"
@@ -1866,7 +1907,7 @@ msgstr "已共享"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:183 libraries/export/xml.php:36
-#: server_status.php:240
+#: server_status.php:273
msgid "Tables"
msgstr "資料表"
@@ -1946,7 +1987,6 @@ msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案."
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:495
#: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1170
-#: test/theme.php:55
msgid "Server"
msgstr "伺服器"
@@ -1994,7 +2034,7 @@ msgid "Documentation"
msgstr "文件"
#: libraries/common.lib.php:573 libraries/header_printview.inc.php:60
-#: server_status.php:227 server_status.php:787
+#: server_status.php:260 server_status.php:796
msgid "SQL query"
msgstr "SQL 查詢"
@@ -2002,119 +2042,119 @@ msgstr "SQL 查詢"
msgid "MySQL said: "
msgstr "MySQL 返回:"
-#: libraries/common.lib.php:1063
+#: libraries/common.lib.php:1079
msgid "Failed to connect to SQL validator!"
msgstr "連線到 SQL 檢驗器失敗!"
-#: libraries/common.lib.php:1104 libraries/config/messages.inc.php:472
+#: libraries/common.lib.php:1120 libraries/config/messages.inc.php:472
msgid "Explain SQL"
msgstr "SQL說明 "
-#: libraries/common.lib.php:1108
+#: libraries/common.lib.php:1124
msgid "Skip Explain SQL"
msgstr "略過SQL說明 "
-#: libraries/common.lib.php:1142
+#: libraries/common.lib.php:1158
msgid "Without PHP Code"
msgstr "無 PHP 程式碼"
-#: libraries/common.lib.php:1145 libraries/config/messages.inc.php:474
+#: libraries/common.lib.php:1161 libraries/config/messages.inc.php:474
msgid "Create PHP Code"
msgstr "建立 PHP 程式碼"
-#: libraries/common.lib.php:1163 libraries/config/messages.inc.php:473
-#: server_status.php:376 server_status.php:407 server_status.php:435
+#: libraries/common.lib.php:1179 libraries/config/messages.inc.php:473
+#: server_status.php:409 server_status.php:432 server_status.php:450
msgid "Refresh"
msgstr "重新整理"
-#: libraries/common.lib.php:1172
+#: libraries/common.lib.php:1188
msgid "Skip Validate SQL"
msgstr "略過檢驗 SQL"
-#: libraries/common.lib.php:1175 libraries/config/messages.inc.php:476
+#: libraries/common.lib.php:1191 libraries/config/messages.inc.php:476
msgid "Validate SQL"
msgstr "檢驗 SQL"
-#: libraries/common.lib.php:1230
+#: libraries/common.lib.php:1246
msgid "Inline edit of this query"
msgstr "在本頁面編輯此查詢"
-#: libraries/common.lib.php:1232
+#: libraries/common.lib.php:1248
msgid "Inline"
msgstr "行間"
-#: libraries/common.lib.php:1299 sql.php:908
+#: libraries/common.lib.php:1315 sql.php:921
msgid "Profiling"
msgstr "概要"
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "B"
msgstr "B"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "KiB"
msgstr "KB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "MiB"
msgstr "MB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "GiB"
msgstr "GB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "TiB"
msgstr "TB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "PiB"
msgstr "PB"
-#: libraries/common.lib.php:1319
+#: libraries/common.lib.php:1335
msgid "EiB"
msgstr "EB"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1537
+#: libraries/common.lib.php:1553
#: libraries/transformations/text_plain__dateformat.inc.php:33
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/common.lib.php:1852
+#: libraries/common.lib.php:1868
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小時,%s 分 %s 秒"
-#: libraries/common.lib.php:2263 libraries/common.lib.php:2266
-#: libraries/display_tbl.lib.php:288
+#: libraries/common.lib.php:2279 libraries/common.lib.php:2282
+#: libraries/display_tbl.lib.php:307
msgid "Begin"
msgstr "開始"
-#: libraries/common.lib.php:2264 libraries/common.lib.php:2267
-#: libraries/display_tbl.lib.php:289 server_binlog.php:154
+#: libraries/common.lib.php:2280 libraries/common.lib.php:2283
+#: libraries/display_tbl.lib.php:308 server_binlog.php:154
#: server_binlog.php:156
msgid "Previous"
msgstr "上一個"
-#: libraries/common.lib.php:2294 libraries/common.lib.php:2297
-#: libraries/display_tbl.lib.php:368
+#: libraries/common.lib.php:2310 libraries/common.lib.php:2313
+#: libraries/display_tbl.lib.php:387
msgid "End"
msgstr "結束"
-#: libraries/common.lib.php:2369
+#: libraries/common.lib.php:2385
#, php-format
msgid "Jump to database "%s"."
msgstr "跳轉到資料庫“%s”"
-#: libraries/common.lib.php:2388
+#: libraries/common.lib.php:2404
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s"
-#: libraries/common.lib.php:2745 libraries/common.lib.php:2752
-#: libraries/common.lib.php:2940 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:2761 libraries/common.lib.php:2768
+#: libraries/common.lib.php:2956 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:366
#: libraries/config/user_preferences.forms.php:195
#: libraries/config/user_preferences.forms.php:232
@@ -2126,41 +2166,41 @@ msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s"
msgid "Structure"
msgstr "結構"
-#: libraries/common.lib.php:2746 libraries/common.lib.php:2753
+#: libraries/common.lib.php:2762 libraries/common.lib.php:2769
#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53
#: libraries/export/sql.php:24 libraries/import/sql.php:17
#: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:58
-#: querywindow.php:88 test/theme.php:95
+#: querywindow.php:88
msgid "SQL"
msgstr "SQL"
-#: libraries/common.lib.php:2748 libraries/common.lib.php:2938
-#: libraries/common.lib.php:2939 libraries/sql_query_form.lib.php:318
+#: libraries/common.lib.php:2764 libraries/common.lib.php:2954
+#: libraries/common.lib.php:2955 libraries/sql_query_form.lib.php:318
#: libraries/sql_query_form.lib.php:321 libraries/tbl_links.inc.php:67
msgid "Insert"
msgstr "插入"
-#: libraries/common.lib.php:2755 libraries/db_links.inc.php:86
+#: libraries/common.lib.php:2771 libraries/db_links.inc.php:86
#: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102
#: view_operations.php:87
msgid "Operations"
msgstr "操作"
-#: libraries/common.lib.php:2885
+#: libraries/common.lib.php:2901
msgid "Browse your computer:"
msgstr "從計算機中上傳:"
-#: libraries/common.lib.php:2901
+#: libraries/common.lib.php:2917
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "選擇 Web 伺服器上傳目錄 %s :"
-#: libraries/common.lib.php:2913 libraries/sql_query_form.lib.php:499
+#: libraries/common.lib.php:2929 libraries/sql_query_form.lib.php:499
#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "設定之上傳目錄錯誤,無法使用"
-#: libraries/common.lib.php:2921
+#: libraries/common.lib.php:2937
msgid "There are no files to upload"
msgstr "沒有可上傳的檔案"
@@ -2511,7 +2551,7 @@ msgstr "預設資料表標籤"
msgid "Show binary contents as HEX by default"
msgstr "預設以十六進制顯示二進制內容"
-#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590
+#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
msgstr "以十六進制顯示二進制內容"
@@ -3428,9 +3468,8 @@ msgid ""
msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]爲不限制)"
#: libraries/config/messages.inc.php:318
-#, fuzzy
msgid "Memory limit"
-msgstr "記憶體限制"
+msgstr "內存限制"
#: libraries/config/messages.inc.php:319
msgid "These are Edit, Inline edit, Copy and Delete links"
@@ -3445,8 +3484,6 @@ msgid "Use natural order for sorting table and database names"
msgstr "爲資料庫和資料資料表名稱使用自然排序"
#: libraries/config/messages.inc.php:322
-#, fuzzy
-#| msgid "Alter table order by"
msgid "Natural order"
msgstr "自然排序"
@@ -3543,22 +3580,16 @@ msgid "Query window height (in pixels)"
msgstr "查詢視窗高度 (單位:像素)"
#: libraries/config/messages.inc.php:345
-#, fuzzy
-#| msgid "Query window"
msgid "Query window height"
-msgstr "查詢視窗高度"
+msgstr "查詢窗口高度"
#: libraries/config/messages.inc.php:346
-#, fuzzy
-#| msgid "Query window"
msgid "Query window width (in pixels)"
-msgstr "查詢視窗寬度 (單位:像素)"
+msgstr "查詢窗口寬度 (單位:像素)"
#: libraries/config/messages.inc.php:347
-#, fuzzy
-#| msgid "Query window"
msgid "Query window width"
-msgstr "查詢視窗寬度"
+msgstr "查詢窗口寬度"
#: libraries/config/messages.inc.php:348
msgid "Select which functions will be used for character set conversion"
@@ -3583,8 +3614,6 @@ msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "每 X 單元格重複表頭,要禁止此功能請設爲 [kbd]0[/kbd]"
#: libraries/config/messages.inc.php:353
-#, fuzzy
-#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "重複表頭"
@@ -3601,9 +3630,8 @@ msgid "Directory where exports can be saved on server"
msgstr "伺服器上用來儲存匯出檔案的資料夾"
#: libraries/config/messages.inc.php:358
-#, fuzzy
msgid "Save directory"
-msgstr "儲存資料夾"
+msgstr "保存文件夾"
#: libraries/config/messages.inc.php:359
msgid "Leave blank if not used"
@@ -3693,9 +3721,8 @@ msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "怎樣連線到伺服器,如果不確定,請選擇 tcp"
#: libraries/config/messages.inc.php:378
-#, fuzzy
msgid "Connection type"
-msgstr "連線方式"
+msgstr "連接方式"
#: libraries/config/messages.inc.php:379
msgid "Control user password"
@@ -3718,7 +3745,6 @@ msgid "Count tables when showing database list"
msgstr "顯示資料庫列表時計算資料表的數量"
#: libraries/config/messages.inc.php:383
-#, fuzzy
msgid "Count tables"
msgstr "統計資料表"
@@ -3729,7 +3755,6 @@ msgid ""
msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:385
-#, fuzzy
msgid "Designer table"
msgstr "設計表"
@@ -3758,7 +3783,6 @@ msgid "Hide databases matching regular expression (PCRE)"
msgstr "該正則表達式 (PCRE,Perl 相容) 所符合的資料庫將被隱藏"
#: libraries/config/messages.inc.php:391
-#, fuzzy
msgid "Hide databases"
msgstr "隱藏資料庫"
@@ -3777,7 +3801,6 @@ msgid "Hostname where MySQL server is running"
msgstr "MySQL 伺服器的主機名"
#: libraries/config/messages.inc.php:395
-#, fuzzy
msgid "Server hostname"
msgstr "伺服器主機名"
@@ -3836,8 +3859,6 @@ msgstr ""
"pmadb]pmadb [/a]。不使用請留空。預設: [kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:406
-#, fuzzy
-#| msgid "database name"
msgid "Database name"
msgstr "資料庫名"
@@ -3846,9 +3867,8 @@ msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "MySQL 伺服器監聽的連接埠,留空爲預設"
#: libraries/config/messages.inc.php:408
-#, fuzzy
msgid "Server port"
-msgstr "伺服器連接埠"
+msgstr "伺服器端口"
#: libraries/config/messages.inc.php:409
msgid ""
@@ -3871,9 +3891,8 @@ msgstr ""
"設:[kbd]pma_relation[/kbd]"
#: libraries/config/messages.inc.php:412
-#, fuzzy
msgid "Relation table"
-msgstr "關聯表"
+msgstr "關係表"
#: libraries/config/messages.inc.php:413
msgid "SQL command to fetch available databases"
@@ -3903,9 +3922,8 @@ msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "MySQL 伺服器監聽的連線埠,留空爲預設"
#: libraries/config/messages.inc.php:419
-#, fuzzy
msgid "Server socket"
-msgstr "伺服器連線埠 (socket)"
+msgstr "伺服器套接字 (socket)"
#: libraries/config/messages.inc.php:420
msgid "Enable SSL for connection to MySQL server"
@@ -3931,10 +3949,8 @@ msgid ""
msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]"
#: libraries/config/messages.inc.php:425
-#, fuzzy
-#| msgid "Displaying Column Comments"
msgid "Display columns table"
-msgstr "顯示欄位表"
+msgstr "顯示字段表"
#: libraries/config/messages.inc.php:426
msgid ""
@@ -3983,8 +3999,6 @@ msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "定義自動建立新版的命令列表"
#: libraries/config/messages.inc.php:435
-#, fuzzy
-#| msgid "Statements"
msgid "Statements to track"
msgstr "要追蹤的命令"
@@ -4005,8 +4019,6 @@ msgid ""
msgstr "設定追蹤系統是否自動爲資料表和 view建立版本"
#: libraries/config/messages.inc.php:439
-#, fuzzy
-#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "自動建立版本"
@@ -4076,10 +4088,8 @@ msgid ""
msgstr "定義在編輯/插入模式中是否顯示欄位類型一列"
#: libraries/config/messages.inc.php:454
-#, fuzzy
-#| msgid "Show open tables"
msgid "Show field types"
-msgstr "顯示欄位類型"
+msgstr "顯示字段類型"
#: libraries/config/messages.inc.php:455
msgid "Display the function fields in edit/insert mode"
@@ -4109,7 +4119,6 @@ msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "定義是否顯示 phpMyAdmin 產生的 SQL 查詢"
#: libraries/config/messages.inc.php:461
-#, fuzzy
msgid "Show SQL queries"
msgstr "顯示 SQL 查詢"
@@ -4118,7 +4127,6 @@ msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "允許顯示資料庫和資料表的統計資訊 (如:空間使用)"
#: libraries/config/messages.inc.php:463
-#, fuzzy
msgid "Show statistics"
msgstr "顯示統計"
@@ -4158,7 +4166,6 @@ msgid ""
msgstr "將已鎖定的資料表在資料庫中顯示爲使用中"
#: libraries/config/messages.inc.php:470
-#, fuzzy
msgid "Skip locked tables"
msgstr "跳過鎖定的表"
@@ -4194,9 +4201,8 @@ msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymo
#: libraries/config/messages.inc.php:481 tbl_tracking.php:454
#: tbl_tracking.php:511
-#, fuzzy
msgid "Username"
-msgstr "帳號"
+msgstr "使用者名"
#: libraries/config/messages.inc.php:482
msgid ""
@@ -4225,10 +4231,8 @@ msgstr ""
"(*1.25)"
#: libraries/config/messages.inc.php:487
-#, fuzzy
-#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
-msgstr "文字框列"
+msgstr "文本框列"
#: libraries/config/messages.inc.php:488
msgid ""
@@ -4251,10 +4255,8 @@ msgid "Title of browser window when nothing is selected"
msgstr "未選擇時瀏覽器視窗的標題"
#: libraries/config/messages.inc.php:493
-#, fuzzy
-#| msgid "Default"
msgid "Default title"
-msgstr "預設標題"
+msgstr "默認標題"
#: libraries/config/messages.inc.php:494
msgid "Title of browser window when a server is selected"
@@ -4492,7 +4494,7 @@ msgstr "設計器"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60
#: server_privileges.php:119 server_privileges.php:1802
-#: server_privileges.php:2152 test/theme.php:115
+#: server_privileges.php:2152
msgid "Privileges"
msgstr "權限"
@@ -4504,7 +4506,7 @@ msgstr "一般"
msgid "Return type"
msgstr "返回類型"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1965
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2042
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4684,40 +4686,30 @@ msgid "Character set of the file:"
msgstr "檔案的字集:"
#: libraries/display_export.lib.php:311
-#, fuzzy
-#| msgid "Compression"
msgid "Compression:"
msgstr "壓縮:"
-#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517
+#: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:556
#: libraries/export/sql.php:1057 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1955 server_status.php:819
+#: pmd_general.php:510 server_privileges.php:1955 server_status.php:828
msgid "None"
msgstr "無"
#: libraries/display_export.lib.php:315
-#, fuzzy
-#| msgid "\"zipped\""
msgid "zipped"
msgstr "zip 壓縮"
#: libraries/display_export.lib.php:317
-#, fuzzy
-#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "gzip 壓縮"
#: libraries/display_export.lib.php:319
-#, fuzzy
-#| msgid "\"bzipped\""
msgid "bzipped"
msgstr "bzip 壓縮"
#: libraries/display_export.lib.php:328
-#, fuzzy
-#| msgid "Save as file"
msgid "View output as text"
-msgstr "直接顯示爲文字"
+msgstr "直接顯示為文本"
#: libraries/display_export.lib.php:333 libraries/display_import.lib.php:244
#: libraries/export/codegen.php:37
@@ -4725,8 +4717,6 @@ msgid "Format:"
msgstr "格式:"
#: libraries/display_export.lib.php:338
-#, fuzzy
-#| msgid "Transformation options"
msgid "Format-specific options:"
msgstr "格式特定選項:"
@@ -4737,7 +4727,6 @@ msgid ""
msgstr "請下拉至所選格式並設定選項,其它格式請忽略"
#: libraries/display_export.lib.php:347 libraries/display_import.lib.php:260
-#, fuzzy
msgid "Encoding Conversion:"
msgstr "編碼轉換:"
@@ -4825,37 +4814,57 @@ msgstr "格式特定選項:"
msgid "Language"
msgstr "Language"
-#: libraries/display_tbl.lib.php:386
+#: libraries/display_tbl.lib.php:397
+#, fuzzy
+#| msgid "Add/Delete Field Columns"
+msgid "Restore column order"
+msgstr "文字框列"
+
+#: libraries/display_tbl.lib.php:411
+msgid "Drag to reorder"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:412
+#, fuzzy
+#| msgid "Click to select"
+msgid "Click to sort"
+msgstr "點擊選取"
+
+#: libraries/display_tbl.lib.php:413
+msgid "Click to mark/unmark"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:425
#, php-format
msgid "%d is not valid row number."
msgstr "%d 不是有效行數"
-#: libraries/display_tbl.lib.php:392
+#: libraries/display_tbl.lib.php:431
msgid "row(s) starting from row #"
msgstr "行,起始行 #"
-#: libraries/display_tbl.lib.php:397
+#: libraries/display_tbl.lib.php:436
msgid "horizontal"
msgstr "水平"
-#: libraries/display_tbl.lib.php:398
+#: libraries/display_tbl.lib.php:437
msgid "horizontal (rotated headers)"
msgstr "水平 (旋轉標題)"
-#: libraries/display_tbl.lib.php:399
+#: libraries/display_tbl.lib.php:438
msgid "vertical"
msgstr "垂直"
-#: libraries/display_tbl.lib.php:405
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr "以 %s 模式顯示,並且在 %s 行後重複標題"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:538
msgid "Sort by key"
msgstr "主鍵排序"
-#: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40
+#: libraries/display_tbl.lib.php:585 libraries/export/codegen.php:40
#: libraries/export/csv.php:31 libraries/export/excel.php:36
#: libraries/export/htmlword.php:32 libraries/export/json.php:26
#: libraries/export/latex.php:34 libraries/export/mediawiki.php:23
@@ -4868,103 +4877,92 @@ msgstr "主鍵排序"
#: libraries/import/csv.php:32 libraries/import/docsql.php:34
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
-#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
+#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:231
#: tbl_structure.php:847
-#, fuzzy
msgid "Options"
msgstr "選項"
-#: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561
-#, fuzzy
-#| msgid "Partial Texts"
+#: libraries/display_tbl.lib.php:590 libraries/display_tbl.lib.php:600
msgid "Partial texts"
msgstr "部分內容"
-#: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565
-#, fuzzy
-#| msgid "Full Texts"
+#: libraries/display_tbl.lib.php:591 libraries/display_tbl.lib.php:604
msgid "Full texts"
msgstr "完整內容"
-#: libraries/display_tbl.lib.php:578
-#, fuzzy
+#: libraries/display_tbl.lib.php:617
msgid "Relational key"
msgstr "關聯鍵"
-#: libraries/display_tbl.lib.php:579
-#, fuzzy
-#| msgid "Relational schema"
+#: libraries/display_tbl.lib.php:618
msgid "Relational display column"
-msgstr "關聯顯示欄位"
+msgstr "關聯顯示字段"
-#: libraries/display_tbl.lib.php:586
+#: libraries/display_tbl.lib.php:625
msgid "Show binary contents"
msgstr "顯示二進制內容"
-#: libraries/display_tbl.lib.php:588
+#: libraries/display_tbl.lib.php:627
msgid "Show BLOB contents"
msgstr "顯示 BLOB 內容"
-#: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123
+#: libraries/display_tbl.lib.php:637 libraries/relation.lib.php:123
#: libraries/tbl_properties.inc.php:142 transformation_overview.php:46
msgid "Browser transformation"
msgstr "瀏覽器轉換"
-#: libraries/display_tbl.lib.php:1212
+#: libraries/display_tbl.lib.php:1267
msgid "Copy"
msgstr "複製"
-#: libraries/display_tbl.lib.php:1227 libraries/display_tbl.lib.php:1239
+#: libraries/display_tbl.lib.php:1282 libraries/display_tbl.lib.php:1294
msgid "The row has been deleted"
msgstr "已刪除該行"
-#: libraries/display_tbl.lib.php:1266 libraries/display_tbl.lib.php:2195
-#: server_status.php:815
+#: libraries/display_tbl.lib.php:1321 libraries/display_tbl.lib.php:2272
+#: server_status.php:824
msgid "Kill"
msgstr "中止"
-#: libraries/display_tbl.lib.php:2069
+#: libraries/display_tbl.lib.php:2146
msgid "in query"
msgstr "查詢中"
-#: libraries/display_tbl.lib.php:2087
+#: libraries/display_tbl.lib.php:2164
msgid "Showing rows"
msgstr "顯示行"
-#: libraries/display_tbl.lib.php:2097
+#: libraries/display_tbl.lib.php:2174
msgid "total"
msgstr "總計"
-#: libraries/display_tbl.lib.php:2105 sql.php:660
+#: libraries/display_tbl.lib.php:2182 sql.php:672
#, php-format
msgid "Query took %01.4f sec"
msgstr "查詢花費 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2228 querywindow.php:114 querywindow.php:118
+#: libraries/display_tbl.lib.php:2305 querywindow.php:114 querywindow.php:118
#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "修改"
-#: libraries/display_tbl.lib.php:2301
+#: libraries/display_tbl.lib.php:2378
msgid "Query results operations"
msgstr "查詢結果選項"
-#: libraries/display_tbl.lib.php:2329
+#: libraries/display_tbl.lib.php:2406
msgid "Print view (with full texts)"
msgstr "列印預覽 (全文顯示)"
-#: libraries/display_tbl.lib.php:2377 tbl_chart.php:83
-#, fuzzy
-#| msgid "Display PDF schema"
+#: libraries/display_tbl.lib.php:2454 tbl_chart.php:83
msgid "Display chart"
msgstr "顯示圖表"
-#: libraries/display_tbl.lib.php:2396
-#, fuzzy
+#: libraries/display_tbl.lib.php:2473
msgid "Create view"
-msgstr "建立 view"
+msgstr "新建視圖"
-#: libraries/display_tbl.lib.php:2511
+#: libraries/display_tbl.lib.php:2588
msgid "Link not found"
msgstr "找不到連結"
@@ -5008,7 +5006,7 @@ msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小"
msgid "Buffer Pool"
msgstr "快取池"
-#: libraries/engines/innodb.lib.php:135 server_status.php:287
+#: libraries/engines/innodb.lib.php:135 server_status.php:320
msgid "InnoDB Status"
msgstr "InnoDB 狀態"
@@ -5475,7 +5473,7 @@ msgstr "顯示 MIME 類型"
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
#: libraries/replication_gui.lib.php:331 server_privileges.php:713
#: server_privileges.php:716 server_privileges.php:772
-#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:781
+#: server_privileges.php:1607 server_privileges.php:2150 server_status.php:790
msgid "Host"
msgstr "主機"
@@ -5688,7 +5686,7 @@ msgstr "SQL 查詢結果"
msgid "Generated by"
msgstr "產生者"
-#: libraries/import.lib.php:153 sql.php:656 tbl_change.php:179
+#: libraries/import.lib.php:153 sql.php:668 tbl_change.php:179
#: tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查詢結果爲空 (即零行)"
@@ -5845,7 +5843,7 @@ msgstr ""
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:332
msgid "No change"
msgstr "無更改"
@@ -6174,14 +6172,14 @@ msgid "Slave status"
msgstr "從伺服器狀態"
#: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422
-#: server_status.php:1012 server_variables.php:66
+#: server_status.php:1021 server_variables.php:66
msgid "Variable"
msgstr "變數"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
-#: server_status.php:1013 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:823
+#: server_status.php:1022 tbl_change.php:325 tbl_printview.php:367
+#: tbl_select.php:117 tbl_structure.php:823
msgid "Value"
msgstr "值"
@@ -6394,10 +6392,8 @@ msgid "Current Server"
msgstr "目前伺服器"
#: libraries/server_links.inc.php:73
-#, fuzzy
-#| msgid "General relation features"
msgid "Settings"
-msgstr "一般關聯功能"
+msgstr "設定"
#: libraries/server_links.inc.php:79 server_synchronize.php:1087
#: server_synchronize.php:1095
@@ -6405,20 +6401,20 @@ msgid "Synchronize"
msgstr "同步"
#: libraries/server_links.inc.php:84 server_binlog.php:96
-#: server_status.php:233 test/theme.php:119
+#: server_status.php:266
msgid "Binary log"
msgstr "二進制日誌"
#: libraries/server_links.inc.php:95 server_engines.php:125
-#: server_engines.php:129 server_status.php:285 test/theme.php:103
+#: server_engines.php:129 server_status.php:318
msgid "Variables"
msgstr "變數"
-#: libraries/server_links.inc.php:99 test/theme.php:107
+#: libraries/server_links.inc.php:99
msgid "Charsets"
msgstr "字集"
-#: libraries/server_links.inc.php:103 test/theme.php:111
+#: libraries/server_links.inc.php:103
msgid "Engines"
msgstr "引擎"
@@ -6456,21 +6452,18 @@ msgstr "在資料庫 %s 運行 SQL 查詢"
#: libraries/sql_query_form.lib.php:296 navigation.php:296
#: setup/frames/index.inc.php:231
-#, fuzzy
msgid "Clear"
msgstr "清除"
#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
msgid "Columns"
-msgstr "欄位"
+msgstr "字段"
-#: libraries/sql_query_form.lib.php:336 sql.php:986 sql.php:987 sql.php:1004
+#: libraries/sql_query_form.lib.php:336 sql.php:999 sql.php:1000 sql.php:1017
msgid "Bookmark this SQL query"
msgstr "將此 SQL 查詢加爲書籤"
-#: libraries/sql_query_form.lib.php:343 sql.php:998
+#: libraries/sql_query_form.lib.php:343 sql.php:1011
msgid "Let every user access this bookmark"
msgstr "讓所有使用者均可訪問此書籤"
@@ -6660,16 +6653,13 @@ msgid ""
msgstr "此轉換沒有說明。 詳細功能請詢問 %s 的作者"
#: libraries/tbl_properties.inc.php:625 tbl_structure.php:636
-#, fuzzy, php-format
-#| msgid "Add %s field(s)"
+#, php-format
msgid "Add %s column(s)"
-msgstr "新增 %s 個欄位"
+msgstr "增加 %s 個字段"
#: libraries/tbl_properties.inc.php:627 tbl_structure.php:630
-#, fuzzy
-#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
-msgstr "至少要新增一個欄位"
+msgstr "至少要增加一個字段。"
#: libraries/tbl_properties.inc.php:735 server_engines.php:56
#: tbl_operations.php:370
@@ -6681,11 +6671,10 @@ msgid "PARTITION definition"
msgstr "分區定義"
#: libraries/tbl_properties.inc.php:795
-#, fuzzy
msgid "+ Add a new value"
-msgstr "+ 新增"
+msgstr "+ 增加"
-#: libraries/tbl_triggers.inc.php:27 server_status.php:784 sql.php:913
+#: libraries/tbl_triggers.inc.php:27 server_status.php:793 sql.php:926
msgid "Time"
msgstr "時間"
@@ -6862,7 +6851,7 @@ msgid "Protocol version"
msgstr "協定版本"
#: main.php:165 server_privileges.php:1452 server_privileges.php:1606
-#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:780
+#: server_privileges.php:1730 server_privileges.php:2149 server_status.php:789
msgid "User"
msgstr "使用者"
@@ -6895,19 +6884,14 @@ msgid "Official Homepage"
msgstr "官方首頁"
#: main.php:217
-#, fuzzy
-#| msgid "Attributes"
msgid "Contribute"
msgstr "貢獻"
#: main.php:218
-#, fuzzy
msgid "Get support"
-msgstr "取得支援"
+msgstr "獲取支持"
#: main.php:219
-#, fuzzy
-#| msgid "No change"
msgid "List of changes"
msgstr "更新列表"
@@ -6974,14 +6958,12 @@ msgstr ""
"好,請立即刪除該資料夾"
#: main.php:299
-#, fuzzy, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. To find out why click %shere%s."
+#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
-msgstr "phpMyAdmin 進階功能未全部設定,部分功能不可用。要查出原因請%s點這裏%s"
+msgstr ""
+"phpMyAdmin 高級功能未全部設定,部分功能不可用。要查出原因請%s點這裡%s。"
#: main.php:314
msgid ""
@@ -7017,16 +6999,13 @@ msgid "Filter"
msgstr "過濾"
#: navigation.php:297
-#, fuzzy
-#| msgid "Alter table order by"
msgid "filter tables by name"
-msgstr "請輸入部分或完整的資料表名稱"
+msgstr "請輸入部分或完整的表名"
#: navigation.php:330 navigation.php:331
-#, fuzzy
msgctxt "short form"
msgid "Create table"
-msgstr "建立資料表"
+msgstr "新建資料表"
#: navigation.php:336 navigation.php:508
msgid "Please select a database"
@@ -7132,7 +7111,7 @@ msgstr "聚合"
#: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629
#: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759
-#: tbl_select.php:115
+#: tbl_select.php:116
msgid "Operator"
msgstr "運算符"
@@ -7305,17 +7284,17 @@ msgstr "檔案不存在"
msgid "Select binary log to view"
msgstr "選擇要查看的二進制日誌"
-#: server_binlog.php:122 server_status.php:242
+#: server_binlog.php:122 server_status.php:275
msgid "Files"
msgstr "檔案"
-#: server_binlog.php:169 server_binlog.php:171 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:169 server_binlog.php:171 server_status.php:799
+#: server_status.php:801
msgid "Truncate Shown Queries"
msgstr "截斷顯示的查詢"
-#: server_binlog.php:177 server_binlog.php:179 server_status.php:790
-#: server_status.php:792
+#: server_binlog.php:177 server_binlog.php:179 server_status.php:799
+#: server_status.php:801
msgid "Show Full Queries"
msgstr "顯示完整查詢"
@@ -7827,7 +7806,7 @@ msgstr "權限已成功重新讀取."
msgid "This server is configured as master in a replication process."
msgstr "此伺服器已被設定爲一個複製程序中的主伺服器"
-#: server_replication.php:182 server_status.php:262
+#: server_replication.php:182 server_status.php:295
msgid "Show master status"
msgstr "查看主伺服器狀態"
@@ -7968,206 +7947,194 @@ msgstr ""
"此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定 "
"嗎?"
-#: server_status.php:101
-#, php-format
-msgid "Thread %s was successfully killed."
-msgstr "已中止程序 %s "
-
-#: server_status.php:103
-#, php-format
-msgid ""
-"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
-msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉"
-
-#: server_status.php:230
-msgid "Handler"
-msgstr "處理器"
-
-#: server_status.php:231
-msgid "Query cache"
-msgstr "查詢快取"
-
-#: server_status.php:232
-msgid "Threads"
-msgstr "程序"
-
-#: server_status.php:234
-msgid "Temporary data"
-msgstr "臨時資料"
-
-#: server_status.php:235
-msgid "Delayed inserts"
-msgstr "延遲插入"
-
-#: server_status.php:236
-msgid "Key cache"
-msgstr "鍵快取"
-
-#: server_status.php:237
-msgid "Joins"
-msgstr "多表查詢"
-
-#: server_status.php:239
-msgid "Sorting"
-msgstr "排序"
-
-#: server_status.php:241
-msgid "Transaction coordinator"
-msgstr "交易協調"
-
-#: server_status.php:252
-msgid "Flush (close) all tables"
-msgstr "強制更新 (關閉) 所有表"
-
-#: server_status.php:254
-msgid "Show open tables"
-msgstr "顯示開啟的表"
-
-#: server_status.php:259
-msgid "Show slave hosts"
-msgstr "顯示從伺服器"
-
-#: server_status.php:265
-msgid "Show slave status"
-msgstr "顯示從伺服器狀態"
-
-#: server_status.php:270
-msgid "Flush query cache"
-msgstr "強制更新查詢快取"
-
-#: server_status.php:362
-msgid "Runtime Information"
-msgstr "運行資訊"
-
-#: server_status.php:367
-#, fuzzy
-#| msgid "Server Choice"
-msgid "Server traffic"
-msgstr "選擇伺服器"
-
-#: server_status.php:368
-msgid "Query statistics"
-msgstr "查詢統計"
-
-#: server_status.php:369
-#, fuzzy
-#| msgid "See slave status table"
-msgid "All status variables"
-msgstr "查看從伺服器狀態"
-
-#: server_status.php:379 server_status.php:410
+#: server_status.php:27
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "重新整理"
-#: server_status.php:380 server_status.php:411
-#, fuzzy
-#| msgid "Second"
-msgid "second"
-msgstr "秒"
-
-#: server_status.php:381 server_status.php:382 server_status.php:383
-#: server_status.php:384 server_status.php:385 server_status.php:412
-#: server_status.php:413 server_status.php:414 server_status.php:415
-#: server_status.php:416
-#, fuzzy
-#| msgid "Second"
-msgid "seconds"
-msgstr "秒"
-
-#: server_status.php:386 server_status.php:387 server_status.php:388
-#: server_status.php:389 server_status.php:417 server_status.php:418
-#: server_status.php:419 server_status.php:420
-#, fuzzy
+#: server_status.php:31
+#, fuzzy, php-format
#| msgid "Minute"
-msgid "minutes"
-msgstr "分"
+msgid "%d minute"
+msgid_plural "%d minutes"
+msgstr[0] "分"
-#: server_status.php:440
+#: server_status.php:33
+#, fuzzy, php-format
+#| msgid "Second"
+msgid "%d second"
+msgid_plural "%d seconds"
+msgstr[0] "秒"
+
+#: server_status.php:134
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr "已中止程序 %s "
+
+#: server_status.php:136
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉"
+
+#: server_status.php:263
+msgid "Handler"
+msgstr "處理器"
+
+#: server_status.php:264
+msgid "Query cache"
+msgstr "查詢快取"
+
+#: server_status.php:265
+msgid "Threads"
+msgstr "程序"
+
+#: server_status.php:267
+msgid "Temporary data"
+msgstr "臨時資料"
+
+#: server_status.php:268
+msgid "Delayed inserts"
+msgstr "延遲插入"
+
+#: server_status.php:269
+msgid "Key cache"
+msgstr "鍵快取"
+
+#: server_status.php:270
+msgid "Joins"
+msgstr "多表查詢"
+
+#: server_status.php:272
+msgid "Sorting"
+msgstr "排序"
+
+#: server_status.php:274
+msgid "Transaction coordinator"
+msgstr "交易協調"
+
+#: server_status.php:285
+msgid "Flush (close) all tables"
+msgstr "強制更新 (關閉) 所有表"
+
+#: server_status.php:287
+msgid "Show open tables"
+msgstr "顯示開啟的表"
+
+#: server_status.php:292
+msgid "Show slave hosts"
+msgstr "顯示從伺服器"
+
+#: server_status.php:298
+msgid "Show slave status"
+msgstr "顯示從伺服器狀態"
+
+#: server_status.php:303
+msgid "Flush query cache"
+msgstr "強制更新查詢快取"
+
+#: server_status.php:395
+msgid "Runtime Information"
+msgstr "運行資訊"
+
+#: server_status.php:400
+#, fuzzy
+#| msgid "Server Choice"
+msgid "Server traffic"
+msgstr "選擇伺服器"
+
+#: server_status.php:402
+#, fuzzy
+#| msgid "See slave status table"
+msgid "All status variables"
+msgstr "查看從伺服器狀態"
+
+#: server_status.php:455
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "保持原密碼"
-#: server_status.php:445
+#: server_status.php:460
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "顯示開啟的表"
-#: server_status.php:449
+#: server_status.php:464
msgid "Filter by category..."
msgstr ""
-#: server_status.php:462
+#: server_status.php:477
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "相關連結"
-#: server_status.php:507 server_status.php:539 server_status.php:660
-#: server_status.php:705
+#: server_status.php:521 server_status.php:556 server_status.php:669
+#: server_status.php:714
msgid "per hour"
msgstr "每小時"
-#: server_status.php:510
+#: server_status.php:525
msgid "per minute"
msgstr "每分鐘"
-#: server_status.php:515
+#: server_status.php:530
msgid "per second"
msgstr "每秒"
-#: server_status.php:534
+#: server_status.php:551
msgid "Query type"
msgstr "查詢方式"
#. l10n: # = Amount of queries
-#: server_status.php:537
+#: server_status.php:554
msgid "#"
msgstr ""
-#: server_status.php:609
+#: server_status.php:618
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:617
+#: server_status.php:626
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s"
-#: server_status.php:627
+#: server_status.php:636
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr "此 MySQL 伺服器正以主 和從 伺服器運行於複製 程序中"
-#: server_status.php:629
+#: server_status.php:638
msgid "This MySQL server works as master in replication process."
msgstr "此 MySQL 伺服器正以主 伺服器運行於複製 程序中"
-#: server_status.php:631
+#: server_status.php:640
msgid "This MySQL server works as slave in replication process."
msgstr "此 MySQL 伺服器正以從 伺服器運行於複製 程序中"
-#: server_status.php:633
+#: server_status.php:642
msgid ""
"For further information about replication status on the server, please visit "
-"the replication section ."
+"the replication section ."
msgstr ""
-"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊 "
+"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊"
+" "
-#: server_status.php:643
+#: server_status.php:652
msgid "Replication status"
msgstr "複製狀態"
-#: server_status.php:659
+#: server_status.php:668
msgid "Traffic"
msgstr "流量"
-#: server_status.php:659
+#: server_status.php:668
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -8175,45 +8142,41 @@ msgstr ""
"在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正"
"確"
-#: server_status.php:665
+#: server_status.php:674
msgid "Received"
msgstr "已接收"
-#: server_status.php:675
+#: server_status.php:684
msgid "Sent"
msgstr "已發送"
-#: server_status.php:704
+#: server_status.php:713
msgid "Connections"
msgstr "連線"
-#: server_status.php:711
+#: server_status.php:720
msgid "max. concurrent connections"
msgstr "最大同時連線數"
-#: server_status.php:718
+#: server_status.php:727
msgid "Failed attempts"
msgstr "已失敗"
-#: server_status.php:732
+#: server_status.php:741
msgid "Aborted"
msgstr "已取消"
-#: server_status.php:778
-msgid "Processes"
-msgstr "處理"
-
-#: server_status.php:779
+#: server_status.php:788
msgid "ID"
msgstr "ID"
-#: server_status.php:840
+#: server_status.php:849
#, 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:841
+#: server_status.php:850
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 "
@@ -8222,16 +8185,16 @@ msgstr ""
"因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存"
"的數量"
-#: server_status.php:842
+#: server_status.php:851
msgid "The number of transactions that used the temporary binary log cache."
msgstr "交易所用的臨時二進制日誌快取的數量"
-#: server_status.php:843
+#: server_status.php:852
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:844
+#: server_status.php:853
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 "
@@ -8241,46 +8204,46 @@ msgstr ""
"伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables "
"很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟"
-#: server_status.php:845
+#: server_status.php:854
msgid "How many temporary files mysqld has created."
msgstr "mysqld 已建立的臨時檔案的數量"
-#: server_status.php:846
+#: server_status.php:855
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量"
-#: server_status.php:847
+#: server_status.php:856
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
"發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值) "
-#: server_status.php:848
+#: server_status.php:857
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:849
+#: server_status.php:858
msgid "The number of INSERT DELAYED rows written."
msgstr "延遲插入已寫入的行數"
-#: server_status.php:850
+#: server_status.php:859
msgid "The number of executed FLUSH statements."
msgstr "已執行的強制更新 (FLUSH) 指令數"
-#: server_status.php:851
+#: server_status.php:860
msgid "The number of internal COMMIT statements."
msgstr "已執行的內部送出 (COMMIT) 指令數"
-#: server_status.php:852
+#: server_status.php:861
msgid "The number of times a row was deleted from a table."
msgstr "從資料表中刪除行的次數"
-#: server_status.php:853
+#: server_status.php:862
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 "
@@ -8289,7 +8252,7 @@ msgstr ""
"如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發"
"現”Handler_discovery 表明瞭一個資料表被發現的次數"
-#: server_status.php:854
+#: server_status.php:863
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, "
@@ -8298,14 +8261,14 @@ msgstr ""
"讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃"
"描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo "
-#: server_status.php:855
+#: server_status.php:864
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:856
+#: server_status.php:865
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 "
@@ -8314,7 +8277,7 @@ msgstr ""
"根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或"
"進行完整表掃描,該值將會不斷增長"
-#: server_status.php:857
+#: server_status.php:866
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -8322,7 +8285,7 @@ msgstr ""
"根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... "
"DESC 的查詢"
-#: server_status.php:858
+#: server_status.php:867
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 "
@@ -8332,7 +8295,7 @@ msgstr ""
"根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能"
"有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢"
-#: server_status.php:859
+#: server_status.php:868
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 "
@@ -8342,35 +8305,35 @@ msgstr ""
"從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味"
"着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位"
-#: server_status.php:860
+#: server_status.php:869
msgid "The number of internal ROLLBACK statements."
msgstr "內部回滾 (ROLLBACK) 指令數"
-#: server_status.php:861
+#: server_status.php:870
msgid "The number of requests to update a row in a table."
msgstr "資料表中更新行的請求數"
-#: server_status.php:862
+#: server_status.php:871
msgid "The number of requests to insert a row in a table."
msgstr "資料表中插入行的請求數"
-#: server_status.php:863
+#: server_status.php:872
msgid "The number of pages containing data (dirty or clean)."
msgstr "非空頁數 (含髒頁) "
-#: server_status.php:864
+#: server_status.php:873
msgid "The number of pages currently dirty."
msgstr "目前髒頁數"
-#: server_status.php:865
+#: server_status.php:874
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "請求更新的快取池頁數"
-#: server_status.php:866
+#: server_status.php:875
msgid "The number of free pages."
msgstr "空閒頁數"
-#: server_status.php:867
+#: server_status.php:876
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 "
@@ -8379,7 +8342,7 @@ msgstr ""
"InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能"
"被重新整理或刪除的"
-#: server_status.php:868
+#: server_status.php:877
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 "
@@ -8390,11 +8353,11 @@ msgstr ""
"公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data "
-#: server_status.php:869
+#: server_status.php:878
msgid "Total size of buffer pool, in pages."
msgstr "快取池總大小 (單位:頁)"
-#: server_status.php:870
+#: server_status.php:879
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."
@@ -8402,23 +8365,23 @@ msgstr ""
"InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時"
"發生"
-#: server_status.php:871
+#: server_status.php:880
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:872
+#: server_status.php:881
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB 完成的邏輯讀請求數"
-#: server_status.php:873
+#: server_status.php:882
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:874
+#: server_status.php:883
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 "
@@ -8430,85 +8393,85 @@ msgstr ""
"必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正"
"確,這個值應該會很小"
-#: server_status.php:875
+#: server_status.php:884
msgid "The number writes done to the InnoDB buffer pool."
msgstr "寫入 InnoDB 快取池的次數"
-#: server_status.php:876
+#: server_status.php:885
msgid "The number of fsync() operations so far."
msgstr "fsync() 總操作的次數"
-#: server_status.php:877
+#: server_status.php:886
msgid "The current number of pending fsync() operations."
msgstr "目前掛起 fsync() 操作的數量"
-#: server_status.php:878
+#: server_status.php:887
msgid "The current number of pending reads."
msgstr "目前掛起的讀操作數"
-#: server_status.php:879
+#: server_status.php:888
msgid "The current number of pending writes."
msgstr "目前掛起的寫操作數"
-#: server_status.php:880
+#: server_status.php:889
msgid "The amount of data read so far, in bytes."
msgstr "讀取的總資料量 (單位:字元)"
-#: server_status.php:881
+#: server_status.php:890
msgid "The total number of data reads."
msgstr "資料讀取總數"
-#: server_status.php:882
+#: server_status.php:891
msgid "The total number of data writes."
msgstr "資料寫入總數"
-#: server_status.php:883
+#: server_status.php:892
msgid "The amount of data written so far, in bytes."
msgstr "寫入的總資料量 (單位:字元)"
-#: server_status.php:884
+#: server_status.php:893
msgid "The number of pages that have been written for doublewrite operations."
msgstr "以雙寫入操作寫入的頁數"
-#: server_status.php:885
+#: server_status.php:894
msgid "The number of doublewrite operations that have been performed."
msgstr "已經執行的雙寫入次數"
-#: server_status.php:886
+#: server_status.php:895
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:887
+#: server_status.php:896
msgid "The number of log write requests."
msgstr "日誌寫入請求數"
-#: server_status.php:888
+#: server_status.php:897
msgid "The number of physical writes to the log file."
msgstr "日誌物理寫入次數"
-#: server_status.php:889
+#: server_status.php:898
msgid "The number of fsync() writes done to the log file."
msgstr "使用 fsync() 寫入日志檔案的次數"
-#: server_status.php:890
+#: server_status.php:899
msgid "The number of pending log file fsyncs."
msgstr "目前掛起的 fsync 日志檔案數"
-#: server_status.php:891
+#: server_status.php:900
msgid "Pending log file writes."
msgstr "目前掛起的日誌寫入數"
-#: server_status.php:892
+#: server_status.php:901
msgid "The number of bytes written to the log file."
msgstr "寫入日志檔案的字元數"
-#: server_status.php:893
+#: server_status.php:902
msgid "The number of pages created."
msgstr "建立的頁數"
-#: server_status.php:894
+#: server_status.php:903
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."
@@ -8516,75 +8479,75 @@ msgstr ""
"編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方"
"便地將這些值轉化爲字元數"
-#: server_status.php:895
+#: server_status.php:904
msgid "The number of pages read."
msgstr "讀取的頁數"
-#: server_status.php:896
+#: server_status.php:905
msgid "The number of pages written."
msgstr "寫入的頁數"
-#: server_status.php:897
+#: server_status.php:906
msgid "The number of row locks currently being waited for."
msgstr "正在等待行鎖的數量"
-#: server_status.php:898
+#: server_status.php:907
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "等待取得行鎖的平均時間 (單位:毫秒)"
-#: server_status.php:899
+#: server_status.php:908
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "等待取得行鎖的總時間 (單位:毫秒)"
-#: server_status.php:900
+#: server_status.php:909
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "等待取得行鎖的最大時間 (單位:毫秒)"
-#: server_status.php:901
+#: server_status.php:910
msgid "The number of times a row lock had to be waited for."
msgstr "等待行鎖的次數"
-#: server_status.php:902
+#: server_status.php:911
msgid "The number of rows deleted from InnoDB tables."
msgstr "從 InnoDB 資料表中刪除的行數"
-#: server_status.php:903
+#: server_status.php:912
msgid "The number of rows inserted in InnoDB tables."
msgstr "插入到 InnoDB 資料表中的行數"
-#: server_status.php:904
+#: server_status.php:913
msgid "The number of rows read from InnoDB tables."
msgstr "從 InnoDB 資料表中讀取的行數"
-#: server_status.php:905
+#: server_status.php:914
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB 中更新的行數"
-#: server_status.php:906
+#: server_status.php:915
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:907
+#: server_status.php:916
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:908
+#: server_status.php:917
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:909
+#: server_status.php:918
msgid "The number of requests to read a key block from the cache."
msgstr "從快取中讀取鍵塊的請求次數"
-#: server_status.php:910
+#: server_status.php:919
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 "
@@ -8593,15 +8556,15 @@ msgstr ""
"從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size "
"可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出"
-#: server_status.php:911
+#: server_status.php:920
msgid "The number of requests to write a key block to the cache."
msgstr "將一個鍵塊寫入快取的請求數"
-#: server_status.php:912
+#: server_status.php:921
msgid "The number of physical writes of a key block to disk."
msgstr "將鍵塊物理寫入到硬碟的次數"
-#: server_status.php:913
+#: server_status.php:922
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 "
@@ -8610,54 +8573,54 @@ msgstr ""
"最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進"
"行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯"
-#: server_status.php:914
+#: server_status.php:923
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:915
+#: server_status.php:924
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "等待寫入延遲插入隊列的行數"
-#: server_status.php:916
+#: server_status.php:925
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:917
+#: server_status.php:926
msgid "The number of files that are open."
msgstr "開啟的檔案個數"
-#: server_status.php:918
+#: server_status.php:927
msgid "The number of streams that are open (used mainly for logging)."
msgstr "開啟的流個數 (主要用於日誌記錄)"
-#: server_status.php:919
+#: server_status.php:928
msgid "The number of tables that are open."
msgstr "開啟的資料表個數"
-#: server_status.php:920
+#: server_status.php:929
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:921
+#: server_status.php:930
msgid "The amount of free memory for query cache."
msgstr "查詢快取中空閒的記憶體總數"
-#: server_status.php:922
+#: server_status.php:931
msgid "The number of cache hits."
msgstr "快取命中數"
-#: server_status.php:923
+#: server_status.php:932
msgid "The number of queries added to the cache."
msgstr "加入到快取的查詢數"
-#: server_status.php:924
+#: server_status.php:933
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 "
@@ -8667,7 +8630,7 @@ msgstr ""
"爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除"
"哪個已快取的查詢。該資訊可幫助您調整查詢快取大小"
-#: server_status.php:925
+#: server_status.php:934
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -8675,19 +8638,19 @@ msgstr ""
"未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的"
"查詢)"
-#: server_status.php:926
+#: server_status.php:935
msgid "The number of queries registered in the cache."
msgstr "在快取中註冊的查詢數"
-#: server_status.php:927
+#: server_status.php:936
msgid "The total number of blocks in the query cache."
msgstr "查詢快取中的總塊數"
-#: server_status.php:928
+#: server_status.php:937
msgid "The status of failsafe replication (not yet implemented)."
msgstr "失敗保護器的狀態 (尚未套用)"
-#: server_status.php:929
+#: server_status.php:938
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."
@@ -8695,11 +8658,11 @@ msgstr ""
"沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當"
"的索引"
-#: server_status.php:930
+#: server_status.php:939
msgid "The number of joins that used a range search on a reference table."
msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量"
-#: server_status.php:931
+#: server_status.php:940
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.)"
@@ -8707,7 +8670,7 @@ msgstr ""
"沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細"
"檢查是否已經爲表建立了適當的索引。)"
-#: server_status.php:932
+#: server_status.php:941
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -8715,36 +8678,36 @@ msgstr ""
"在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影"
"響。)"
-#: server_status.php:933
+#: server_status.php:942
msgid "The number of joins that did a full scan of the first table."
msgstr "在第一個資料表上進行了完整表掃描的多表查詢數"
-#: server_status.php:934
+#: server_status.php:943
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "目前由從 SQL 程序開啟的臨時表的數量"
-#: server_status.php:935
+#: server_status.php:944
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr "從 SQL 程序總共重試交易複製數"
-#: server_status.php:936
+#: server_status.php:945
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器"
-#: server_status.php:937
+#: server_status.php:946
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量"
-#: server_status.php:938
+#: server_status.php:947
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "使用了比 long_query_time 更多時間的查詢數"
-#: server_status.php:939
+#: server_status.php:948
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 "
@@ -8753,23 +8716,23 @@ msgstr ""
"排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 "
"sort_buffer_size 的值"
-#: server_status.php:940
+#: server_status.php:949
msgid "The number of sorts that were done with ranges."
msgstr "局部範圍完成的排序次數"
-#: server_status.php:941
+#: server_status.php:950
msgid "The number of sorted rows."
msgstr "排序的行數"
-#: server_status.php:942
+#: server_status.php:951
msgid "The number of sorts that were done by scanning the table."
msgstr "掃描表完成的排序次數"
-#: server_status.php:943
+#: server_status.php:952
msgid "The number of times that a table lock was acquired immediately."
msgstr "立即需要鎖定表的次數"
-#: server_status.php:944
+#: server_status.php:953
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 "
@@ -8779,7 +8742,7 @@ msgstr ""
"無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題,"
"則應該首先檢查您的查詢指令,然後使用複製操作來分開表"
-#: server_status.php:945
+#: server_status.php:954
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 "
@@ -8788,11 +8751,11 @@ msgstr ""
"程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如"
"果該值是紅色的,則應該增加 thread_cache_size 的值"
-#: server_status.php:946
+#: server_status.php:955
msgid "The number of currently open connections."
msgstr "目前開啟的連線數"
-#: server_status.php:947
+#: server_status.php:956
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 "
@@ -8802,7 +8765,7 @@ msgstr ""
"目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 "
"thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)"
-#: server_status.php:948
+#: server_status.php:957
msgid "The number of threads that are not sleeping."
msgstr "非睡眠狀態的程序數量"
@@ -8923,7 +8886,7 @@ msgstr "伺服器變數和設定"
msgid "Session value"
msgstr "連線值"
-#: server_variables.php:69 server_variables.php:108
+#: server_variables.php:69 server_variables.php:110
msgid "Global value"
msgstr "全域值"
@@ -9014,14 +8977,12 @@ msgid "Display"
msgstr "顯示"
#: setup/frames/index.inc.php:228
-#, fuzzy
msgid "Load"
-msgstr "載入"
+msgstr "加載"
#: setup/frames/index.inc.php:239
-#, fuzzy
msgid "phpMyAdmin homepage"
-msgstr "phpMyAdmin 首頁 "
+msgstr "phpMyAdmin 主頁 (外鏈,英文)"
#: setup/frames/index.inc.php:240
msgid "Donate"
@@ -9221,41 +9182,39 @@ msgstr "短語密碼太短,至少應有 8 個字元"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元"
-#: sql.php:94 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
-#: tbl_select.php:30 tbl_select.php:33
+#: sql.php:94 tbl_change.php:253 tbl_select.php:27 tbl_select.php:28
+#: tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "瀏覽不相關的值"
-#: sql.php:170
+#: sql.php:181
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "使用書籤 \"%s\" 作爲預設的查詢"
-#: sql.php:632 tbl_replace.php:387
+#: sql.php:644 tbl_replace.php:388
#, php-format
msgid "Inserted row id: %1$d"
msgstr "插入的行 id: %1$d"
-#: sql.php:649
+#: sql.php:661
msgid "Showing as PHP code"
msgstr "顯示爲 PHP 程式碼"
-#: sql.php:652 tbl_replace.php:361
+#: sql.php:664 tbl_replace.php:362
msgid "Showing SQL query"
msgstr "顯示 SQL 查詢"
-#: sql.php:654
-#, fuzzy
-#| msgid "Validate SQL"
+#: sql.php:666
msgid "Validated SQL"
-msgstr "已檢驗的 SQL"
+msgstr "已校驗的 SQL"
-#: sql.php:960
+#: sql.php:973
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "資料表 `%s` 的索引存在問題"
-#: sql.php:992
+#: sql.php:1005
msgid "Label"
msgstr "標籤"
@@ -9514,14 +9473,10 @@ msgid "Table %s has been flushed"
msgstr "已強制更新表 %s "
#: tbl_operations.php:668
-#, fuzzy
-#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
-msgstr "重新整理表 (FLUSH)"
+msgstr "刷新表 (FLUSH)"
#: tbl_operations.php:677
-#, fuzzy
-#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "刪除資料或資料表"
@@ -9530,12 +9485,10 @@ msgid "Empty the table (TRUNCATE)"
msgstr "清空資料表 (TRUNCATE)"
#: tbl_operations.php:712
-#, fuzzy
msgid "Delete the table (DROP)"
msgstr "刪除資料表 (DROP)"
#: tbl_operations.php:733
-#, fuzzy
msgid "Partition maintenance"
msgstr "分區維護"
@@ -9549,7 +9502,6 @@ msgid "Analyze"
msgstr "分析"
#: tbl_operations.php:745
-#, fuzzy
msgid "Check"
msgstr "檢查"
@@ -9562,7 +9514,6 @@ msgid "Rebuild"
msgstr "重建"
#: tbl_operations.php:748
-#, fuzzy
msgid "Repair"
msgstr "修復"
@@ -9637,23 +9588,23 @@ msgstr "外部鍵約束"
msgid "No rows selected"
msgstr "沒有選中任何行"
-#: tbl_select.php:109
+#: tbl_select.php:110
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "執行“依例查詢”(萬用字元:“%”)"
-#: tbl_select.php:233
+#: tbl_select.php:234
msgid "Select columns (at least one):"
msgstr "選擇欄位 (至少一個):"
-#: tbl_select.php:251
+#: tbl_select.php:252
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "新增搜尋條件 (“where”指令的主體):"
-#: tbl_select.php:258
+#: tbl_select.php:259
msgid "Number of rows per page"
msgstr "每頁行數"
-#: tbl_select.php:264
+#: tbl_select.php:265
msgid "Display order:"
msgstr "顯示順序:"
@@ -9939,6 +9890,12 @@ msgstr " view名"
msgid "Rename view to"
msgstr "將 view改名爲"
+#~ msgid "Theme / Style"
+#~ msgstr "佈景主題/風格"
+
+#~ msgid "seconds"
+#~ msgstr "秒"
+
#~ msgid "Query execution time comparison (in microseconds)"
#~ msgstr "查詢執行時間對比 (單位:微秒)"
diff --git a/scripts/update-po b/scripts/update-po
index f293467441..0475b6dd38 100755
--- a/scripts/update-po
+++ b/scripts/update-po
@@ -1,6 +1,6 @@
#!/bin/sh
# vim: expandtab sw=4 ts=4 sts=4:
-export LC_COLLATE=C
+export LANG=C
LOCS=`ls po/*.po | sed 's@.*/\(.*\)\.po@\1@'`
xgettext \
-d phpmyadmin \
@@ -12,7 +12,7 @@ xgettext \
--debug \
--keyword=__ --keyword=_pgettext:1c,2 --keyword=_ngettext:1,2 \
--copyright-holder="phpMyAdmin devel team" \
- `find . -name '*.php' | sort`
+ `find . -name '*.php' -not -path './test/*' | sort`
ver=`sed -n "/PMA_VERSION', '/ s/.*PMA_VERSION', '\(.*\)'.*/\1/p" libraries/Config.class.php`
diff --git a/server_privileges.php b/server_privileges.php
index b5f70313e3..cedbcef459 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1698,7 +1698,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
unset ($row);
echo ' ' . "\n"
- . ' ' . "\n"
+ . ' ' . "\n"
. PMA_getIcon('b_usradd.png')
. ' ' . __('Add user') . ' ' . "\n"
. ' ' . "\n";
diff --git a/server_sql.php b/server_sql.php
index 243d0bf0db..f8609f49cb 100644
--- a/server_sql.php
+++ b/server_sql.php
@@ -14,6 +14,7 @@ require_once './libraries/common.inc.php';
* Does the common work
*/
$GLOBALS['js_include'][] = 'functions.js';
+$GLOBALS['js_include'][] = 'makegrid.js';
$GLOBALS['js_include'][] = 'sql.js';
require_once './libraries/server_common.inc.php';
diff --git a/server_status.php b/server_status.php
index c56eb70cca..fd3eb08d0f 100644
--- a/server_status.php
+++ b/server_status.php
@@ -15,29 +15,48 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) {
define('PMA_NO_VARIABLES_IMPORT', true);
}
+if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true)
+ $GLOBALS['is_header_sent'] = true;
+
require_once './libraries/common.inc.php';
+/**
+ * Function to output refresh rate selection.
+ */
+function PMA_choose_refresh_rate() {
+ echo '' . __('Refresh rate') . ' ';
+ foreach (array(1, 2, 5, 20, 40, 60, 120, 300, 600) as $rate) {
+ if ($rate % 60 == 0) {
+ $minrate = $rate / 60;
+ echo '' . sprintf(_ngettext('%d minute', '%d minutes', $minrate), $minrate) . ' ';
+ } else {
+ echo '' . sprintf(_ngettext('%d second', '%d seconds', $rate), $rate) . ' ';
+ }
+ }
+}
+
/**
* Ajax request
*/
-// Prevent ajax requests from being cached
-if (isset($_REQUEST['ajax_request'])) {
- header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
- header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
- header_remove('Last-Modified');
+if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
+ // Send with correct charset
+ header('Content-Type: text/html; charset=UTF-8');
- if (isset($_REQUEST["query_chart"])) {
- exit(createQueryChart());
- }
- if(isset($_REQUEST['chart_data'])) {
+ // real-time charting data
+ if (isset($_REQUEST['chart_data'])) {
switch($_REQUEST['type']) {
case 'proc':
$c = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name="Connections"', 0, 1);
$result = PMA_DBI_query('SHOW PROCESSLIST');
$num_procs = PMA_DBI_num_rows($result);
- $ret = Array('x'=>(microtime(true)*1000),'y_proc'=>$num_procs,'y_conn'=>$c['Connections']);
+ $ret = array(
+ 'x' => microtime(true)*1000,
+ 'y_proc' => $num_procs,
+ 'y_conn' => $c['Connections']
+ );
+
exit(json_encode($ret));
case 'queries':
$queries = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name LIKE "Com_%" AND Value>0', 0, 1);
@@ -45,13 +64,23 @@ if (isset($_REQUEST['ajax_request'])) {
// admin commands are not queries
unset($queries['Com_admin_commands']);
- $sum=array_sum($queries);
- $ret = Array('x'=>(microtime(true)*1000),'y'=>$sum,'pointInfo'=>$queries);
+ $sum = array_sum($queries);
+ $ret = array(
+ 'x' => microtime(true)*1000,
+ 'y' => $sum,
+ 'pointInfo' => $queries
+ );
+
exit(json_encode($ret));
case 'traffic':
$traffic = PMA_DBI_fetch_result('SHOW GLOBAL STATUS WHERE Variable_name="Bytes_received" OR Variable_name="Bytes_sent"', 0, 1);
- $ret = Array('x'=>(microtime(true)*1000),'y_sent'=>$traffic['Bytes_sent'],'y_received'=>$traffic['Bytes_received']);
+ $ret = array(
+ 'x' => microtime(true)*1000,
+ 'y_sent' => $traffic['Bytes_sent'],
+ 'y_received' => $traffic['Bytes_received']
+ );
+
exit(json_encode($ret));
}
@@ -295,17 +324,17 @@ $links['innodb']['doc'] = 'innodb';
// Variable to contain all com_ variables
-$used_queries = Array();
+$used_queries = array();
// Variable to map variable names to their respective section name (used for js category filtering)
-$allocationMap = Array();
+$allocationMap = array();
// sort vars into arrays
foreach ($server_status as $name => $value) {
foreach ($allocations as $filter => $section) {
- if (strpos($name, $filter) !== FALSE) {
+ if (strpos($name, $filter) !== false) {
$allocationMap[$name] = $section;
- if($section=='com' && $value>0) $used_queries[$name] = $value;
+ if ($section == 'com' && $value > 0) $used_queries[$name] = $value;
break; // Only exits inner loop
}
}
@@ -315,7 +344,7 @@ foreach ($server_status as $name => $value) {
unset($used_queries['Com_admin_commands']);
/* Ajax request refresh */
-if(isset($_REQUEST['show']) && isset($_REQUEST['ajax_request'])) {
+if (isset($_REQUEST['show']) && isset($_REQUEST['ajax_request'])) {
switch($_REQUEST['show']) {
case 'query_statistics':
printQueryStatistics();
@@ -360,8 +389,9 @@ pma_theme_image = '';
/**
* Displays the sub-page heading
*/
-if($GLOBALS['cfg']['MainPageIconic'])
+if ($GLOBALS['cfg']['MainPageIconic']) {
echo ' ';
+}
echo __('Runtime Information');
@@ -380,17 +410,7 @@ echo __('Runtime Information');
-
- 1
- 2
- 5
- 10
- 20
- 40
- 1
- 2
- 5
- 10
+
@@ -413,17 +433,7 @@ echo __('Runtime Information');
-
- 1
- 2
- 5
- 10
- 20
- 40
- 1
- 2
- 5
- 10
+
@@ -454,7 +464,7 @@ echo __('Runtime Information');
$section_name) {
+ foreach($sections as $section_id => $section_name) {
?>
';
$i=0;
foreach ($section_links as $link_name => $link_url) {
- if($i>0) echo ', ';
+ if ($i > 0) echo ', ';
if ('doc' == $link_name) {
echo PMA_showMySQLDocu($link_url, $link_url);
} else {
@@ -497,30 +507,32 @@ echo __('Runtime Information');
function printQueryStatistics() {
global $server_status, $used_queries, $url_query, $PMA_PHP_SELF;
- $hour_factor = 3600 / $server_status['Uptime'];
+ $hour_factor = 3600 / $server_status['Uptime'];
$total_queries = array_sum($used_queries);
?>
- Query statistics : Since its startup, %s queries have been sent to the server.'),
- //PMA_formatNumber($server_status['Questions'], 0));
- sprintf('Queries since startup: %s',PMA_formatNumber($total_queries, 0));
- //echo PMA_showMySQLDocu('server-status-variables', 'server-status-variables', false, 'statvar_Questions');
+
+
-
-
- ø :
-
+
+
+ ';
- ø :
-
-
- = 1) {
- ?>
- ø :
-
+ echo 'ø'.__('per minute').':';
+ echo PMA_formatNumber( $total_queries * 60 / $server_status['Uptime'], 0);
+ echo ' ';
+ if ($total_queries / $server_status['Uptime'] >= 1) {
+ echo 'ø'.__('per second').':';
+ echo PMA_formatNumber( $total_queries / $server_status['Uptime'], 0);
+ ?>
+
+
-
+
@@ -549,7 +561,7 @@ function printQueryStatistics() {
$value) {
@@ -558,9 +570,9 @@ function printQueryStatistics() {
// For the percentage column, use Questions - Connections, because
// the number of connections is not an item of the Query types
// but is included in Questions. Then the total of the percentages is 100.
- $name = str_replace(Array('Com_','_'), Array('',' '), $name);
+ $name = str_replace(array('Com_', '_'), array('', ' '), $name);
- if($value < $query_sum * 0.02)
+ if ($value < $query_sum * 0.02)
$other_sum += $value;
else $chart_json[$name] = $value;
?>
@@ -578,21 +590,12 @@ function printQueryStatistics() {
-
+
['.__('Show query chart').']';
- }*/
-
- if($other_sum>0)
+ if ($other_sum > 0)
$chart_json[__('Other')] = $other_sum;
echo json_encode($chart_json);
-
?>
-
-
$value) {
$odd_row = !$odd_row;
- // $allocations
?>
@@ -1088,38 +1085,6 @@ function printVariablesTable() {
$value) {
'.implode(' ',PMA_formatByteDown($value,3,3)).'';
+ else echo PMA_formatNumber($value, 0);
$is_numeric = true;
} else {
echo htmlspecialchars($value);
diff --git a/sql.php b/sql.php
index 153c555b30..f4ea949228 100644
--- a/sql.php
+++ b/sql.php
@@ -160,6 +160,17 @@ if(isset($_REQUEST['get_set_values']) && $_REQUEST['get_set_values'] == true) {
$extra_data['select'] = $select;
PMA_ajaxResponse(NULL, true, $extra_data);
}
+
+/**
+ * Check ajax request to set the column order
+ */
+if(isset($_REQUEST['set_col_order']) && $_REQUEST['set_col_order'] == true) {
+ $pmatable = new PMA_Table($table, $db);
+ $col_order = explode(',', $_REQUEST['col_order']);
+ $retval = $pmatable->setUiProp(PMA_Table::PROP_COLUMN_ORDER, $col_order, $_REQUEST['table_create_time']);
+ PMA_ajaxResponse(NULL, ($retval == true));
+}
+
// Default to browse if no query set and we have table
// (needed for browsing from DefaultTabTable)
if (empty($sql_query) && strlen($table) && strlen($db)) {
@@ -364,10 +375,13 @@ if ($is_select) { // see line 141
$is_maint = true;
}
+// assign default full_sql_query
+$full_sql_query = $sql_query;
+
// Handle remembered sorting order, only for single table query
if ($GLOBALS['cfg']['RememberSorting']
- && basename($GLOBALS['PMA_PHP_SELF']) == 'sql.php'
&& ! ($is_count || $is_export || $is_func || $is_analyse)
+ && count($analyzed_sql[0]['select_expr']) == 0
&& isset($analyzed_sql[0]['queryflags']['select_from'])
&& count($analyzed_sql[0]['table_ref']) == 1
) {
@@ -377,7 +391,7 @@ if ($GLOBALS['cfg']['RememberSorting']
if ($sorted_col) {
// retrieve the remembered sorting order for current table
$sql_order_to_append = ' ORDER BY ' . $sorted_col . ' ';
- $sql_query = $analyzed_sql[0]['section_before_limit'] . $sql_order_to_append . $analyzed_sql[0]['section_after_limit'];
+ $full_sql_query = $analyzed_sql[0]['section_before_limit'] . $sql_order_to_append . $analyzed_sql[0]['section_after_limit'];
// update the $analyzed_sql
$analyzed_sql[0]['section_before_limit'] .= $sql_order_to_append;
@@ -413,9 +427,7 @@ if ((! $cfg['ShowAll'] || $_SESSION['tmp_user_values']['max_rows'] != 'all')
}
}
-} else {
- $full_sql_query = $sql_query;
-} // end if...else
+}
if (strlen($db)) {
PMA_DBI_select_db($db);
@@ -847,6 +859,7 @@ else {
} else {
$GLOBALS['js_include'][] = 'functions.js';
+ $GLOBALS['js_include'][] = 'makegrid.js';
$GLOBALS['js_include'][] = 'sql.js';
unset($message);
diff --git a/tbl_replace.php b/tbl_replace.php
index ff15ff1bb3..e08dafb09d 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -65,6 +65,7 @@ PMA_DBI_select_db($GLOBALS['db']);
*/
$goto_include = false;
+$GLOBALS['js_include'][] = 'makegrid.js';
// Needed for generation of Inline Edit anchors
$GLOBALS['js_include'][] = 'sql.js';
diff --git a/tbl_select.php b/tbl_select.php
index 681083a696..875182d71e 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -16,6 +16,7 @@
require_once './libraries/common.inc.php';
require_once './libraries/mysql_charsets.lib.php';
+$GLOBALS['js_include'][] = 'makegrid.js';
$GLOBALS['js_include'][] = 'sql.js';
$GLOBALS['js_include'][] = 'tbl_select.js';
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
diff --git a/tbl_sql.php b/tbl_sql.php
index 70fafc1d0c..0321395b94 100644
--- a/tbl_sql.php
+++ b/tbl_sql.php
@@ -14,6 +14,7 @@ require_once './libraries/common.inc.php';
* Runs common work
*/
$GLOBALS['js_include'][] = 'functions.js';
+$GLOBALS['js_include'][] = 'makegrid.js';
$GLOBALS['js_include'][] = 'sql.js';
require './libraries/tbl_common.php';
diff --git a/test/theme.php b/test/theme.php
index 5e0dcb21d4..2ad12bb828 100644
--- a/test/theme.php
+++ b/test/theme.php
@@ -156,7 +156,7 @@ echo sprintf(__('Welcome to %s'),